|
@@ -7,20 +7,20 @@
|
|
#include <asm/boot.h>
|
|
#include <asm/boot.h>
|
|
#include <xen/interface/elfnote.h>
|
|
#include <xen/interface/elfnote.h>
|
|
|
|
|
|
- .section .init.text
|
|
|
|
|
|
+.pushsection .init.text
|
|
ENTRY(startup_xen)
|
|
ENTRY(startup_xen)
|
|
movl %esi,xen_start_info
|
|
movl %esi,xen_start_info
|
|
cld
|
|
cld
|
|
movl $(init_thread_union+THREAD_SIZE),%esp
|
|
movl $(init_thread_union+THREAD_SIZE),%esp
|
|
jmp xen_start_kernel
|
|
jmp xen_start_kernel
|
|
|
|
+.popsection
|
|
|
|
|
|
-.pushsection ".bss.page_aligned"
|
|
|
|
|
|
+.pushsection .bss.page_aligned
|
|
.align PAGE_SIZE_asm
|
|
.align PAGE_SIZE_asm
|
|
ENTRY(hypercall_page)
|
|
ENTRY(hypercall_page)
|
|
.skip 0x1000
|
|
.skip 0x1000
|
|
.popsection
|
|
.popsection
|
|
|
|
|
|
- .section .text
|
|
|
|
ELFNOTE(Xen, XEN_ELFNOTE_GUEST_OS, .asciz "linux")
|
|
ELFNOTE(Xen, XEN_ELFNOTE_GUEST_OS, .asciz "linux")
|
|
ELFNOTE(Xen, XEN_ELFNOTE_GUEST_VERSION, .asciz "2.6")
|
|
ELFNOTE(Xen, XEN_ELFNOTE_GUEST_VERSION, .asciz "2.6")
|
|
ELFNOTE(Xen, XEN_ELFNOTE_XEN_VERSION, .asciz "xen-3.0")
|
|
ELFNOTE(Xen, XEN_ELFNOTE_XEN_VERSION, .asciz "xen-3.0")
|