Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 2013 → Rev 2014

/trunk/kernel/arch/ia32xen/_link.ld.in
7,12 → 7,13
 
ENTRY(kernel_image_start)
 
PHDRS {
image PT_LOAD FLAGS(7); /* RWE */
note PT_NOTE FLAGS(4); /* R__ */
}
 
SECTIONS {
__xen_guest : {
*(__xen_guest);
}
.image PA2KA(BOOT_OFFSET): {
.image PA2KA(BOOT_OFFSET): AT (BOOT_OFFSET) {
ktext_start = .;
*(K_TEXT_START);
*(.text);
32,7 → 33,11
*(symtab.*); /* Symbol table, must be LAST symbol! */
*(.bss); /* uninitialized static variables */
kdata_end = .;
}
} :image
.notes : {
*(.note.Xen);
} :note
 
/DISCARD/ : {
*(.note.GNU-stack);