BROM loads 4K of boot0 code (=bootstrap) make sure the first level bootcode fits...
[AROS.git] / arch / arm-sun4i / bootstrap / ldscript.lds
blobf3d041f98f2c672276fa8d068898236f1810640d
1 MEMORY {
2     boot0  (rwx)  : org = 0x00000000 , l = 4K
3     invalid (rwx) : org = 0xdead0000 , l = 0x0
6 SECTIONS 
8     .boot0 : {
9         *(.bootstrap)
10     } >boot0
12     .text : { *(.text*) }
14     /* This should cause angry complaints if .data exists
15     * We don't want .bss, and we don't need it.
16     */
17     .bss : {
18         *(.bss)
19     } >invalid
21     /* This should cause angry complaints if .data exists
22     * We don't want .data, and we don't need it.
23     */
24     .data : {
25         *(.data)
26     } >invalid