Commit 938f94cd authored by Olof Johansson's avatar Olof Johansson Committed by Russell King

ARM: 7656/1: uImage: Error out on build of multiplatform without LOADADDR

On multiplatform kernels, $MACHINE will be empty so there will be no
default LOADADDR. Fail to build the uImage target unless one is provided by the
developer at build time.
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
Acked-by: default avatarNicolas Pitre <nico@linaro.org>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent b44bf43b
...@@ -68,8 +68,8 @@ else ...@@ -68,8 +68,8 @@ else
endif endif
check_for_multiple_loadaddr = \ check_for_multiple_loadaddr = \
if [ $(words $(UIMAGE_LOADADDR)) -gt 1 ]; then \ if [ $(words $(UIMAGE_LOADADDR)) -ne 1 ]; then \
echo 'multiple load addresses: $(UIMAGE_LOADADDR)'; \ echo 'multiple (or no) load addresses: $(UIMAGE_LOADADDR)'; \
echo 'This is incompatible with uImages'; \ echo 'This is incompatible with uImages'; \
echo 'Specify LOADADDR on the commandline to build an uImage'; \ echo 'Specify LOADADDR on the commandline to build an uImage'; \
false; \ false; \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment