x86_64: Fix xen section warnings

Fix

WARNING: vmlinux.o(.data+0x99): Section mismatch: reference to .init.text:xen_start_kernel (between 'startup_xen' and 'boot_gdt_descr')

Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Andi Kleen 2007-07-22 13:21:42 +02:00 committed by Linus Torvalds
parent 5f3f7cc6ad
commit 0f760f1301
1 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@
#include <asm/boot.h>
#include <xen/interface/elfnote.h>
.section .init.text
ENTRY(startup_xen)
movl %esi,xen_start_info
cld
@ -19,6 +20,7 @@ ENTRY(hypercall_page)
.skip 0x1000
.popsection
.section .text
ELFNOTE(Xen, XEN_ELFNOTE_GUEST_OS, .asciz "linux")
ELFNOTE(Xen, XEN_ELFNOTE_GUEST_VERSION, .asciz "2.6")
ELFNOTE(Xen, XEN_ELFNOTE_XEN_VERSION, .asciz "xen-3.0")