From: Paul Mackerras Date: Thu, 7 Jun 2007 12:21:31 +0000 (+1000) Subject: [POWERPC] Fix building of COFF zImages X-Git-Tag: v2.6.22-rc5~102^2 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=f40e524eaec9697d1515564fd5b961d839d2dc4f;p=~emulex%2Finfiniband.git [POWERPC] Fix building of COFF zImages The COFF zImage (for booting oldworld powermacs) wasn't being built correctly because the procedure descriptor in crt0.S for the zImage entry point wasn't declared as .globl, and therefore wasn't getting pulled in from wrapper.a by the linker. This adds the necessary .globl statement. Signed-off-by: Paul Mackerras --- diff --git a/arch/powerpc/boot/crt0.S b/arch/powerpc/boot/crt0.S index 5a4215c4b01..f1c4dfc635b 100644 --- a/arch/powerpc/boot/crt0.S +++ b/arch/powerpc/boot/crt0.S @@ -13,6 +13,7 @@ .text /* a procedure descriptor used when booting this as a COFF file */ + .globl _zimage_start_opd _zimage_start_opd: .long _zimage_start, 0, 0, 0