blob: 56d8588f1a3221f47d0a7f99a200252cf685fe64 [file]
ENTRY(_start)
SECTIONS
{
/* Linux kernel legacy start address. */
. = 0x200000;
_text = .;
.text : {
*(.text)
}
.rodata : {
*(.rodata)
}
_etext = .;
. = ALIGN(8192);
_data = .;
.got : {
*(.got)
}
.data : {
*(.sdata)
*(.data)
}
_edata = .;
.bss : {
*(.bss)
}
_end = .;
}