Rev 3024 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3024 | Rev 3027 | ||
|---|---|---|---|
| Line -... | Line 1... | ||
| - | 1 | OUTPUT_FORMAT("elf32-littlearm") |
|
| - | 2 | ENTRY(start) |
|
| - | 3 | ||
| - | 4 | SECTIONS { |
|
| 1 | .boot 0x0: AT (0) { |
5 | .boot 0x0: AT (0) { |
| 2 | *(BOOTSTRAP); |
6 | *(BOOTSTRAP); |
| 3 | *(.text); |
7 | *(.text); |
| 4 | 8 | ||
| 5 | *(.rodata); |
9 | *(.rodata); |
| Line 13... | Line 17... | ||
| 13 | *(COMMON); /* global variables */ |
17 | *(COMMON); /* global variables */ |
| 14 | *(.reginfo); |
18 | *(.reginfo); |
| 15 | 19 | ||
| 16 | . = 0x4000; |
20 | . = 0x4000; |
| 17 | *(PT); /* page table placed at 0x4000 */ |
21 | *(PT); /* page table placed at 0x4000 */ |
| - | 22 | [[COMPONENTS]] |
|
| - | 23 | } |
|
| - | 24 | } |
|