diff options
author | Milton Miller <miltonm@bga.com> | 2007-05-31 01:29:01 +1000 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-06-02 22:26:22 +1000 |
commit | 627aa944a17ba82ca3ba87dc1d6ee85bd314ec79 (patch) | |
tree | f1758be757fde64d6fc02f7943e4e75f01c7005c /arch/powerpc | |
parent | f48419666e645208c0156aecab1ee6157303da3c (diff) | |
download | linux-3.10-627aa944a17ba82ca3ba87dc1d6ee85bd314ec79.tar.gz linux-3.10-627aa944a17ba82ca3ba87dc1d6ee85bd314ec79.tar.bz2 linux-3.10-627aa944a17ba82ca3ba87dc1d6ee85bd314ec79.zip |
[POWERPC] Fix zImage.coff generation for 32-bit pmac
Commit 9da82a6dee9db4cd5ae7a74ab4f51afb52b6efb9 inadvertently
removed the platform override for zImage.coff to be generated
with pmaccoff. Rather than add a special makefile rule,
change the platform for which the wrapper platform uses
the special rules.
Signed-off-by: Milton Miller <miltonm@bga.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
-rwxr-xr-x | arch/powerpc/boot/wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/boot/wrapper b/arch/powerpc/boot/wrapper index 2ed8b8b3f0e..da77adc7307 100755 --- a/arch/powerpc/boot/wrapper +++ b/arch/powerpc/boot/wrapper @@ -129,7 +129,7 @@ case "$platform" in pmac|pseries|chrp) platformo=$object/of.o ;; -pmaccoff) +coff) platformo=$object/of.o lds=$object/zImage.coff.lds ;; @@ -220,7 +220,7 @@ case "$platform" in pseries|chrp) $object/addnote "$ofile" ;; -pmaccoff) +coff) ${CROSS}objcopy -O aixcoff-rs6000 --set-start "$entry" "$ofile" $object/hack-coff "$ofile" ;; |