mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
e6385c7e9c
When binman is in use, most of the targets built by the Makefile are inputs to binman. We then need a final rule to run binman to produce the final outputs. Rename the variable to indicate this, and add a new 'inputs' target. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
9 lines
183 B
Makefile
9 lines
183 B
Makefile
ifeq ($(CONFIG_CPU_ARM926EJS),y)
|
|
PLATFORM_CPPFLAGS += $(call cc-option,-mtune=arm926ejs,)
|
|
endif
|
|
|
|
ifeq ($(CONFIG_CPU_V7A),y)
|
|
ifndef CONFIG_SPL_BUILD
|
|
INPUTS-y += u-boot.img
|
|
endif
|
|
endif
|