diff options
author | Nate Case <ncase@xes-inc.com> | 2009-06-11 14:43:01 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2009-06-15 22:15:20 -0500 |
commit | 247608234e944e3e8e4d503c54c19ccb63dd27f2 (patch) | |
tree | b7fa696b1f73c2ae453d218adcdf719188d52326 | |
parent | 6277597819f07945d8ef234518d970aa51ef17d8 (diff) | |
download | linux-247608234e944e3e8e4d503c54c19ccb63dd27f2.tar.gz linux-247608234e944e3e8e4d503c54c19ccb63dd27f2.tar.bz2 linux-247608234e944e3e8e4d503c54c19ccb63dd27f2.zip |
powerpc/bootwrapper: Custom build options for XPedite52xx targets
Some XPedite52xx boards have a legacy boot loader requiring some special
care in the boot wrapper. The use of cuboot-85xx is needed to fix
up embedded device trees, and a custom link address is specified to
accommodate the boot loader and larger kernel image sizes used on X-ES
MPC85xx platforms.
Signed-off-by: Nate Case <ncase@xes-inc.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
-rwxr-xr-x | arch/powerpc/boot/wrapper | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/boot/wrapper b/arch/powerpc/boot/wrapper index 3ac75aecdb94..4db487d1d2a8 100755 --- a/arch/powerpc/boot/wrapper +++ b/arch/powerpc/boot/wrapper @@ -225,6 +225,10 @@ asp834x-redboot) platformo="$object/fixed-head.o $object/redboot-83xx.o" binary=y ;; +xpedite52*) + link_address='0x1400000' + platformo=$object/cuboot-85xx.o + ;; esac vmz="$tmpdir/`basename \"$kernel\"`.$ext" |