722b0d521f
This way a program started by the debugger still has the DTB handy.
12 lines
259 B
Plaintext
12 lines
259 B
Plaintext
SECTIONS
|
|
{
|
|
ROM_BASE = 0x10000; /* ... but actually position independent */
|
|
|
|
. = ROM_BASE;
|
|
.text.start : { *(.text.start) }
|
|
. = ROM_BASE + 0x40;
|
|
.text.hang : { *(.text.hang) }
|
|
. = ROM_BASE + 0x80;
|
|
.rodata.dtb : { *(.rodata.dtb) }
|
|
}
|