The patch titled i386: specify section flags while creating new sections has been added to the -mm tree. Its filename is i386-move-startup_32-in-texthead-section-specify-section-flags-while-creating-new-sections.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: i386: specify section flags while creating new sections From: Vivek Goyal <vgoyal@xxxxxxxxxx> o Older binutils (older than 2.6.15) require explicit flags to be set for section. (if a section has been defined using "section" directive). Otherwise a section which should have been allocatable and executable (AX) will not have properties as per intention. o I had put a patch in -mm which will break the things if used with older binutils. Hence this is the fix on top of that patch. http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.20-rc2/2.6.20-rc2-mm1/broken-out/i386-move-startup_32-in-texthead-section.patch Signed-off-by: Vivek Goyal <vgoyal@xxxxxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Cc: "Eric W. Biederman" <ebiederm@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/kernel/head.S | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff -puN arch/i386/kernel/head.S~i386-move-startup_32-in-texthead-section-specify-section-flags-while-creating-new-sections arch/i386/kernel/head.S --- a/arch/i386/kernel/head.S~i386-move-startup_32-in-texthead-section-specify-section-flags-while-creating-new-sections +++ a/arch/i386/kernel/head.S @@ -53,7 +53,7 @@ * any particular GDT layout, because we load our own as soon as we * can. */ -.section .text.head +.section .text.head,"ax",@progbits ENTRY(startup_32) #ifdef CONFIG_PARAVIRT @@ -155,9 +155,9 @@ page_pde_offset = (__PAGE_OFFSET >> 20); */ #ifdef CONFIG_HOTPLUG_CPU -.section .text +.section .text,"ax",@progbits #else -.section .init.text +.section .init.text,"ax",@progbits #endif #ifdef CONFIG_SMP _ Patches currently in -mm which might be from vgoyal@xxxxxxxxxx are i386-restore-config_physical_start-option.patch i386-fix-modpost-warning-in-smp-trampoline-code.patch i386-fix-another-modpost-warning.patch i386-modpost-smpboot-code-warning-fix.patch i386-cpu-hotplug-smpboot-misc-modpost-warning-fixes.patch convert-some-functions-to-__init-to-avoid-modpost-warnings.patch i386-move-startup_32-in-texthead-section.patch i386-move-startup_32-in-texthead-section-specify-section-flags-while-creating-new-sections.patch break-init-in-two-parts-to-avoid-modpost-warnings.patch i386-fix-memory-hotplug-related-modpost-generated-warning.patch i386-make-apic-probe-function-non-init.patch modpost-add-more-symbols-to-whitelist-pattern2.patch modpost-whitelist-reference-to-more-symbols-pattern-3.patch clockevents-i386-drivers.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html