diff options
author | Sascha Hauer <s.hauer@pengutronix.de> | 2011-08-17 15:24:52 +0200 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2011-10-17 10:12:40 +0200 |
commit | 40c6d8aee40e373db75e6b0b4230fc8e8259d7a6 (patch) | |
tree | 28dd575d38399a08b3c344596aafa81f554c05bb /arch/arm/mach-shmobile/Makefile.boot | |
parent | ARM: 7021/1: Check for multiple load addresses before building a uImage (diff) | |
download | linux-40c6d8aee40e373db75e6b0b4230fc8e8259d7a6.tar.xz linux-40c6d8aee40e373db75e6b0b4230fc8e8259d7a6.zip |
ARM: 7022/1: allow to detect conflicting zreladdrs
Boards used to specify zreladdr in their Makefile.boot with
zreladdr-y := x, so conflicting zreladdrs were silently overwritten.
This patch changes this to zreladdr-y += x, so that we end
up with multiple words in zreladdr in such a case. We can
detect this later and complain if necessary.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-shmobile/Makefile.boot')
-rw-r--r-- | arch/arm/mach-shmobile/Makefile.boot | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/Makefile.boot b/arch/arm/mach-shmobile/Makefile.boot index 1c08ee9de86a..498efd99338d 100644 --- a/arch/arm/mach-shmobile/Makefile.boot +++ b/arch/arm/mach-shmobile/Makefile.boot @@ -1,7 +1,7 @@ __ZRELADDR := $(shell /bin/bash -c 'printf "0x%08x" \ $$[$(CONFIG_MEMORY_START) + 0x8000]') - zreladdr-y := $(__ZRELADDR) + zreladdr-y += $(__ZRELADDR) # Unsupported legacy stuff # |