[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20070103041645.GA17546@in.ibm.com>
Date: Wed, 3 Jan 2007 09:46:45 +0530
From: Vivek Goyal <vgoyal@...ibm.com>
To: linux kernel mailing list <linux-kernel@...r.kernel.org>
Cc: Linus Torvalds <torvalds@...l.org>, Andi Kleen <ak@....de>,
Morton Andrew Morton <akpm@...l.org>,
"Eric W. Biederman" <ebiederm@...ssion.com>,
Fastboot mailing list <fastboot@...ts.osdl.org>,
Adrian Bunk <bunk@...sta.de>,
Jean Delvare <khali@...ux-fr.org>,
Segher Boessenkool <segher@...nel.crashing.org>
Subject: [PATCH] i386 kernel instant reboot with older binutils fix
o i386 kernel reboots instantly if compiled with binutils older than
2.6.15.
o Older binutils required explicit flags to mark a section allocatable
and executable(AX). Newer binutils automatically mark a section AX if
the name starts with .text.
o While defining a new section using assembler "section" directive,
explicitly mention section flags.
Signed-off-by: Segher Boessenkool <segher@...nel.crashing.org>
Signed-off-by: Vivek Goyal <vgoyal@...ibm.com>
---
arch/i386/boot/compressed/head.S | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -puN arch/i386/boot/compressed/head.S~jean-reboot-issue-fix arch/i386/boot/compressed/head.S
--- linux-2.6.20-rc2-reloc/arch/i386/boot/compressed/head.S~jean-reboot-issue-fix 2007-01-02 09:54:56.000000000 +0530
+++ linux-2.6.20-rc2-reloc-root/arch/i386/boot/compressed/head.S 2007-01-02 09:57:46.000000000 +0530
@@ -28,7 +28,7 @@
#include <asm/page.h>
#include <asm/boot.h>
-.section ".text.head"
+.section ".text.head","ax",@progbits
.globl startup_32
startup_32:
_
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists