Subversion Repositories HelenOS-historic

Rev

Rev 532 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
420 jermar 1
/*
2
 *  boot[sparc64] linker script
3
 *
4
 */
5
 
6
OUTPUT_FORMAT(a.out-sunos-big)
7
ENTRY(start)
8
 
9
SECTIONS {
10
	.text 0x8000: AT (0x8000) { 
11
		*(.text);
12
		*(.rodata);
13
		*(.rodata.*);
14
		*(.data);		/* initialized data */
15
		*(.sdata);
16
		*(.sdata2);
17
		*(.sbss);
18
		*(.bss);		/* uninitialized static variables */	
19
	}
20
}