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>
7 lines
272 B
Clojure
7 lines
272 B
Clojure
# The standard locations for stuff on CLPS711x type processors
|
|
zreladdr-y += 0xc0028000
|
|
params_phys-y := 0xc0000100
|
|
# Should probably have some agreement on these...
|
|
initrd_phys-$(CONFIG_ARCH_P720T) := 0xc0400000
|
|
initrd_phys-$(CONFIG_ARCH_CDB89712) := 0x00700000
|