diff options
author | Richard Zhao <richard.zhao@freescale.com> | 2010-12-30 19:25:00 +0800 |
---|---|---|
committer | Sascha Hauer <s.hauer@pengutronix.de> | 2011-01-03 09:38:27 +0100 |
commit | 626d90c884591005fdaa9464de81731aab23b864 (patch) | |
tree | 11d53e6cee711e66c4020a6279b3d18925089919 /arch/arm | |
parent | ee1ae4d7b1c9a8b73e232fa33dc733be59368ff6 (diff) | |
download | talos-obmc-linux-626d90c884591005fdaa9464de81731aab23b864.tar.gz talos-obmc-linux-626d90c884591005fdaa9464de81731aab23b864.zip |
ARM: mx5: use config to define boot related addresses
Signed-off-by: Richard Zhao <richard.zhao@freescale.com>
Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-mx5/Makefile.boot | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-mx5/Makefile.boot b/arch/arm/mach-mx5/Makefile.boot index 9939a19d99a1..fec7cd921fcd 100644 --- a/arch/arm/mach-mx5/Makefile.boot +++ b/arch/arm/mach-mx5/Makefile.boot @@ -1,3 +1,3 @@ - zreladdr-y := 0x90008000 -params_phys-y := 0x90000100 -initrd_phys-y := 0x90800000 + zreladdr-$(CONFIG_ARCH_MX51) := 0x90008000 +params_phys-$(CONFIG_ARCH_MX51) := 0x90000100 +initrd_phys-$(CONFIG_ARCH_MX51) := 0x90800000 |