mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-10 17:41:54 +00:00
Add build information (date/time/builder) which can be displayed at the EC console. Generate a version from the board name and the branch tag. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> BUG=chromium-os:27013 TEST=on BDS, run version command on the console. inspect the built binary. Change-Id: Idb1f68898ba6b811d02919f17ab4536ed9f8934a
27 lines
1009 B
Makefile
27 lines
1009 B
Makefile
# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
#
|
|
# Common files build
|
|
#
|
|
|
|
common-y=main.o util.o console.o vboot.o uart_buffering.o usb_charge_commands.o
|
|
common-y+=memory_commands.o shared_mem.o system.o usb_charge.o
|
|
common-y+=gpio_commands.o version.o
|
|
common-$(CONFIG_LPC)+=port80.o
|
|
common-$(CONFIG_TASK_HOSTCMD)+=host_command.o
|
|
common-$(CONFIG_TASK_I8042CMD)+=i8042.o keyboard.o
|
|
common-$(CONFIG_TASK_X86POWER)+=x86_power.o
|
|
common-$(CONFIG_TASK_GAIAPOWER)+=gaia_power.o
|
|
common-$(CONFIG_FLASH)+=flash_commands.o
|
|
common-$(CONFIG_PSTORE)+=pstore_commands.o
|
|
common-$(CONFIG_PWM)+=pwm_commands.o
|
|
common-$(CONFIG_TASK_THERMAL)+=thermal.o thermal_commands.o
|
|
common-$(CONFIG_TEMP_SENSOR)+=temp_sensor.o
|
|
common-$(CONFIG_TMP006)+=tmp006.o
|
|
common-$(CONFIG_LIGHTBAR)+=leds.o
|
|
|
|
# Board driver modules
|
|
common-$(CONFIG_CHARGER_BQ24725)+=charger_bq24725.o
|
|
common-$(CONFIG_SMART_BATTERY)+=smart_battery.o
|