ppc32 boot
[helenos.git] / boot / arch / ppc32 / _link.ld.in
blobf79d57c91077b679beac448c4c4d5a9d4b8aa145
1 ENTRY(start)
3 SECTIONS {
4         . = 0x08000000;
5         .text : {
6                 loader_start = .;
7                 *(BOOTSTRAP);
8                 *(.text);
9                 *(.text.*);
10         }
11         .data : {
12                 *(.data);       /* initialized data */
13                 *(.rodata);
14                 *(.rodata.*);
15                 *(.sdata);
16                 *(.reginfo);
17                 *(.sbss);
18                 *(.scommon);
19                 *(.bss);        /* uninitialized static variables */
20                 *(COMMON);      /* global variables */
21                 loader_end = .;
22                 payload_start = .;
23                 *(.payload);
24                 payload_end = .;
25         }
27         /DISCARD/ : {
28                 *(.gnu.*);
29                 *(.mdebug*);
30                 *(.pdr);
31                 *(.comment);
32                 *(.note.*);
33         }