source: mainline/boot/arch/arm32/loader/_link.ld.in@ cc1f8d4

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since cc1f8d4 was 6ac14a70, checked in by Vineeth Pillai <vineethrp@…>, 16 years ago

ARM port for development board integratorcp(ARM926EJ core module).

  • Property mode set to 100644
File size: 470 bytes
RevLine 
[960f8476]1OUTPUT_FORMAT("elf32-littlearm")
2ENTRY(start)
3
4SECTIONS {
[136edca]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
[6ac14a70]20 . = 0x2000;
21 *(ST); /* bootloader stack section */
22
[136edca]23 . = 0x4000;
24 *(PT); /* page table placed at 0x4000 */
[960f8476]25[[COMPONENTS]]
26 }
27}
Note: See TracBrowser for help on using the repository browser.