source: mainline/boot/arch/arm32/_link.ld.in@ 2d0c3a6

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 2d0c3a6 was d969a9a, checked in by Jiri Svoboda <jiri@…>, 15 years ago

Link gta02 boot stage to the proper base address.

  • Property mode set to 100644
File size: 571 bytes
Line 
1#include <arch/arch.h>
2
3ENTRY(start)
4
5SECTIONS {
6 . = BOOT_BASE;
7 .text : {
8 *(BOOTSTRAP);
9 *(.text);
10 }
11 . = BOOT_BASE + 0x8000;
12 .data : {
13 *(BOOTPT); /* bootstrap page table */
14 *(BOOTSTACK); /* bootstrap stack */
15 *(.data); /* initialized data */
16 *(.rodata);
17 *(.rodata.*);
18 *(.sdata);
19 *(.reginfo);
20 *(.sbss);
21 *(.scommon);
22 *(.bss); /* uninitialized static variables */
23 *(COMMON); /* global variables */
24[[COMPONENTS]]
25 }
26
27 /DISCARD/ : {
28 *(.gnu.*);
29 *(.ARM.*);
30 *(.mdebug*);
31 *(.pdr);
32 *(.comment);
33 *(.note.*);
34 }
35}
Note: See TracBrowser for help on using the repository browser.