Skip to content

Commit

Permalink
vexpress: Pass LOADADDR to Makefile
Browse files Browse the repository at this point in the history
Due to upstream commit 938f94c
("ARM: 7656/1: uImage: Error out on build of multiplatform without LOADADDR"),
vexpress BSP need LOADADDR for making uImage, so pass LOADADDR in the Makefile
for vexpress.

Signed-off-by: Yang Shi <yang.shi@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
  • Loading branch information
Yang Shi authored and zeddii committed Dec 28, 2020
1 parent 743fbca commit 7d55aa6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions arch/arm/boot/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ $(obj)/zImage: $(obj)/compressed/vmlinux FORCE

endif

ifeq ($(CONFIG_ARCH_VEXPRESS), y)
LOADADDR=0x04080000
endif

ifneq ($(LOADADDR),)
UIMAGE_LOADADDR=$(LOADADDR)
else
Expand Down

0 comments on commit 7d55aa6

Please sign in to comment.