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