Rev 795 | Rev 948 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
STARTUP(../libc/arch/ARCH/src/entry.o)
ENTRY(__entry)
PHDRS {
image PT_LOAD AT (0x1000);
}
SECTIONS {
. = 0x1000;
.image 0x00001000 : {
*(.text);
*(.data); /* initialized data */
*(.rodata*); /* string literals */
*(COMMON); /* global variables */
*(.bss); /* uninitialized static variables */
} :image
/DISCARD/ : {
*(.note.GNU-stack);
*(.comment);
}
}