~galfy/helenos/bird-port-mainline

« back to all changes in this revision

Viewing changes to boot/arch/mips32/loader/_link.ld.in

  • Committer: Martin Decky
  • Date: 2009-08-04 11:19:19 UTC
  • Revision ID: martin@uranus.dsrg.hide.ms.mff.cuni.cz-20090804111919-evyclddlr3v5lhmp
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
ENTRY(start)
 
2
 
 
3
SECTIONS {
 
4
        .boot 0xbfc00000: AT (0) {
 
5
                *(BOOTSTRAP);
 
6
                *(.text);
 
7
                
 
8
                *(.rodata);
 
9
                *(.rodata.*);
 
10
                *(.data);       /* initialized data */
 
11
                *(.sdata);
 
12
                *(.sdata2);
 
13
                *(.sbss);
 
14
                *(.scommon);
 
15
                *(.bss);        /* uninitialized static variables */
 
16
                *(COMMON);      /* global variables */
 
17
                *(.reginfo);
 
18
[[COMPONENTS]]
 
19
        }
 
20
}