mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
arm, at91: generate boot.bin file for all atmel SoC
generate the boot.bin file for all atmel SoC (arm920, arm926, armv7) Signed-off-by: Heiko Schocher <hs@denx.de> Reviewed-by: Andreas Bießmann <andreas.devel@googlemail.com> Reviewed-by: Masahiro Yamada <yamada.m@jp.panasonic.com> [fix subject] Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
This commit is contained in:
parent
da79fa4d77
commit
c001486d99
2 changed files with 5 additions and 3 deletions
|
@ -3,8 +3,6 @@
|
|||
#
|
||||
# SPDX-License-Identifier: GPL-2.0+
|
||||
#
|
||||
ifdef CONFIG_SPL_BUILD
|
||||
ALL-y += boot.bin
|
||||
else
|
||||
ifndef CONFIG_SPL_BUILD
|
||||
ALL-y += u-boot.img
|
||||
endif
|
||||
|
|
|
@ -181,6 +181,10 @@ ALL-y += $(obj)/sunxi-spl.bin
|
|||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_SYS_SOC),"at91")
|
||||
ALL-y += boot.bin
|
||||
endif
|
||||
|
||||
all: $(ALL-y)
|
||||
|
||||
ifdef CONFIG_SAMSUNG
|
||||
|
|
Loading…
Reference in a new issue