2016-08-05 20:07:42 +02:00
|
|
|
SECTIONS
|
|
|
|
{
|
2017-03-27 09:01:05 +02:00
|
|
|
ROM_BASE = 0x10000; /* ... but actually position independent */
|
2017-03-24 23:55:57 +01:00
|
|
|
|
|
|
|
. = ROM_BASE;
|
|
|
|
.text.start : { *(.text.start) }
|
|
|
|
. = ROM_BASE + 0x40;
|
|
|
|
.text.hang : { *(.text.hang) }
|
|
|
|
. = ROM_BASE + 0x80;
|
|
|
|
.rodata.dtb : { *(.rodata.dtb) }
|
2016-08-05 20:07:42 +02:00
|
|
|
}
|