mirror of
https://git.codelinaro.org/clo/qsdk/oss/boot/u-boot-2016.git
synced 2026-01-27 17:37:22 +01:00
qca: Modified board spcific Makefile to support CONFIG_ENV_IS_NOWHERE.
Modified board Makefile to avoid compilation of env.c when "CONFIG_ENV_IS_NOWHERE" is enabled. Change-Id: Ie694276c9071ad17f378a9926d78aa5a6e39a449 Signed-off-by: Aditya Kumar Patra S <apatr@codeaurora.org>
This commit is contained in:
parent
9bbb0820f4
commit
84d2f385fb
2 changed files with 3 additions and 1 deletions
|
|
@ -1,6 +1,8 @@
|
|||
obj-y := cmd_bootqca.o
|
||||
obj-y += fdt_info.o
|
||||
obj-y += board_init.o
|
||||
ifndef CONFIG_ENV_IS_NOWHERE
|
||||
obj-y += env.o
|
||||
endif
|
||||
obj-y += fdt_fixup.o
|
||||
obj-y += ethaddr.o
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
env_t *env_ptr;
|
||||
extern env_t *env_ptr;
|
||||
|
||||
void env_relocate_spec(void)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue