lfn
serial
ticket/834-toolchain-update
topic/msim-upgrade
topic/simplify-dev-export
Last change
on this file since fe2333d was 807102ca, checked in by Jakub Jermar <jakub@…>, 15 years ago |
Revive the ia64's loader.
At this stage, the ia64 port builds flawlessly and the loader even starts
inflating the components, but after some time it fails on the first one.
|
-
Property mode
set to
100644
|
File size:
415 bytes
|
Rev | Line | |
---|
[807102ca] | 1 | OUTPUT_FORMAT("elf64-ia64-little")
|
---|
| 2 | ENTRY(start)
|
---|
| 3 |
|
---|
| 4 | SECTIONS {
|
---|
| 5 | .boot 0x4400000: AT (0x4400000) {
|
---|
| 6 | *(BOOTSTRAP);
|
---|
| 7 | *(.text);
|
---|
| 8 | *(.sdata);
|
---|
| 9 | *(.sdata2);
|
---|
| 10 | *(.sbss);
|
---|
| 11 | *(.rodata);
|
---|
| 12 | *(.rodata.*);
|
---|
| 13 | *(.data); /* initialized data */
|
---|
| 14 | _got = . ;
|
---|
| 15 | *(.got .got.*);
|
---|
| 16 | *(.bss); /* uninitialized static variables */
|
---|
| 17 | *(COMMON);
|
---|
| 18 | [[COMPONENTS]]
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 | /DISCARD/ : {
|
---|
| 22 | *(.comment);
|
---|
| 23 | *(.note*);
|
---|
| 24 | }
|
---|
| 25 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.