mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 20:51:47 +00:00
40c6d8aee4
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>
9 lines
171 B
Clojure
9 lines
171 B
Clojure
ifeq ($(CONFIG_ARCH_SA1100),y)
|
|
zreladdr-$(CONFIG_SA1111) += 0xc0208000
|
|
else
|
|
zreladdr-y += 0xc0008000
|
|
endif
|
|
params_phys-y := 0xc0000100
|
|
initrd_phys-y := 0xc0800000
|
|
|