forked from mirror/qemu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
443 B
Plaintext
37 lines
443 B
Plaintext
PHDRS {
|
|
text PT_LOAD FLAGS(5); /* R_E */
|
|
note PT_NOTE FLAGS(0); /* ___ */
|
|
}
|
|
|
|
SECTIONS {
|
|
. = 0x100000;
|
|
|
|
.text : {
|
|
__load_st = .;
|
|
*(.head)
|
|
*(.text)
|
|
} :text
|
|
|
|
.rodata : {
|
|
*(.rodata)
|
|
} :text
|
|
|
|
/DISCARD/ : {
|
|
*(.note.gnu*)
|
|
}
|
|
|
|
.notes : {
|
|
*(.note.*)
|
|
} :note
|
|
|
|
.data : {
|
|
*(.data)
|
|
__load_en = .;
|
|
} :text
|
|
|
|
.bss : {
|
|
*(.bss)
|
|
__bss_en = .;
|
|
}
|
|
}
|