mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-09 17:11:42 +00:00
this fixes the build breakage on stm32-based platforms. In the linker script, remove the ASSERT since this macro is not designed to work in that context and this size condition is already verified by the linker by setting the "length" of the "FLASH" memory region. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> BUG=None TEST=make BOARD=link && make BOARD=daisy boot on Link and Daisy Change-Id: I08964749d44f47caa0a359bc93c303a9611e5d73
31 lines
1.3 KiB
Makefile
31 lines
1.3 KiB
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 message.o util.o console.o uart_buffering.o
|
|
common-y+=memory_commands.o shared_mem.o system_common.o hooks.o
|
|
common-y+=gpio_commands.o version.o
|
|
common-$(CONFIG_BATTERY_ATL706486)+=battery_atl706486.o
|
|
common-$(CONFIG_CHARGER_BQ24725)+=charger_bq24725.o
|
|
common-$(CONFIG_EOPTION)+=eoption.o
|
|
common-$(CONFIG_FLASH)+=flash_common.o flash_commands.o
|
|
common-$(CONFIG_LPC)+=port80.o host_event_commands.o
|
|
common-$(CONFIG_POWER_LED)+=power_led.o
|
|
common-$(CONFIG_PSTORE)+=pstore_commands.o
|
|
common-$(CONFIG_PWM)+=pwm_commands.o
|
|
common-$(CONFIG_TASK_GAIAPOWER)+=gaia_power.o
|
|
common-$(CONFIG_TASK_HOSTCMD)+=host_command.o
|
|
common-$(CONFIG_TASK_I8042CMD)+=i8042.o keyboard.o
|
|
common-$(CONFIG_TASK_LIGHTBAR)+=lightbar.o
|
|
common-$(CONFIG_TASK_POWERSTATE)+=smart_battery.o charge_state.o \
|
|
battery_precharge.o
|
|
common-$(CONFIG_TASK_TEMPSENSOR)+=temp_sensor.o
|
|
common-$(CONFIG_TASK_THERMAL)+=thermal.o thermal_commands.o
|
|
common-$(CONFIG_TASK_X86POWER)+=x86_power.o
|
|
common-$(CONFIG_TMP006)+=tmp006.o
|
|
common-$(CONFIG_USB_CHARGE)+=usb_charge.o usb_charge_commands.o
|
|
common-$(CONFIG_VBOOT)+=vboot.o fmap.o
|