lfn
serial
ticket/834-toolchain-update
topic/msim-upgrade
topic/simplify-dev-export
Last change
on this file since 619e7c9b was 960f8476, checked in by Martin Decky <martin@…>, 17 years ago |
finish unifying pack script
|
-
Property mode
set to
100644
|
File size:
413 bytes
|
Line | |
---|
1 | OUTPUT_FORMAT("elf32-littlearm")
|
---|
2 | ENTRY(start)
|
---|
3 |
|
---|
4 | SECTIONS {
|
---|
5 | .boot 0x0: AT (0) {
|
---|
6 | *(BOOTSTRAP);
|
---|
7 | *(.text);
|
---|
8 |
|
---|
9 | *(.rodata);
|
---|
10 | *(.rodata.*);
|
---|
11 | *(.data); /* initialized data */
|
---|
12 | *(.sdata);
|
---|
13 | *(.sdata2);
|
---|
14 | *(.sbss);
|
---|
15 | *(.scommon);
|
---|
16 | *(.bss); /* uninitialized static variables */
|
---|
17 | *(COMMON); /* global variables */
|
---|
18 | *(.reginfo);
|
---|
19 |
|
---|
20 | . = 0x4000;
|
---|
21 | *(PT); /* page table placed at 0x4000 */
|
---|
22 | [[COMPONENTS]]
|
---|
23 | }
|
---|
24 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.