~galfy/helenos/bird-port-mainline

« back to all changes in this revision

Viewing changes to boot/arch/sparc64/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
OUTPUT_FORMAT("elf64-sparc")
 
2
ENTRY(start)
 
3
 
 
4
SECTIONS {
 
5
        .boot 0x4000: AT (0x4000) {
 
6
                *(BOOTSTRAP);
 
7
                *(.text);
 
8
                *(.rodata);
 
9
                *(.rodata.*);
 
10
                *(.data);               /* initialized data */
 
11
                *(.sdata);
 
12
                *(.sdata2);
 
13
                *(.sbss);
 
14
                *(.bss);                /* uninitialized static variables */
 
15
                *(COMMON);
 
16
[[COMPONENTS]]
 
17
        }
 
18
        
 
19
        /DISCARD/ : {
 
20
                *(.comment);
 
21
                *(.note*);
 
22
        }
 
23
}