Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 627aa944 authored by Milton Miller's avatar Milton Miller Committed by Paul Mackerras
Browse files

[POWERPC] Fix zImage.coff generation for 32-bit pmac



Commit 9da82a6d 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: default avatarMilton Miller <miltonm@bga.com>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent f4841966
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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"
    ;;