loader: remove shouting from ORB's variable name
[hvf.git] / cp / linker.script
blobd6227af5cbea545b8e8bb6f2f323d7a583f42a70
1 PHDRS {
2         text PT_LOAD FLAGS(5);    /* R_E */
3         data PT_LOAD FLAGS(6);    /* RW_ */
6 SECTIONS
8   ENTRY(start)
9   . = 0x100000;
10   .text : { *(.text) } :text
11   .data : { *(.data) } :data
12   .bss : { *(.bss) } :data