Subversion Repositories HelenOS

Rev

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

Rev Author Line No. Line
3027 decky 1
OUTPUT_FORMAT("elf32-powerpc") 
2
OUTPUT_ARCH(powerpc:common) 
3
ENTRY(start) 
4
 
5
SECTIONS {
4341 svoboda 6
	.boot 0x01000000: AT (0) { 
3023 decky 7
		*(BOOTSTRAP);
8
		*(REALMODE);
9
		*(.text);
10
 
11
		*(.rodata);
12
		*(.rodata.*);
13
		*(.data);		/* initialized data */
14
		*(.sdata);
15
		*(.sdata2);
16
		*(.sbss);
17
		*(.bss);		/* uninitialized static variables */	
18
		*(COMMON); 		/* global variables */
3027 decky 19
[[COMPONENTS]]
20
	}
21
}