Subversion Repositories HelenOS

Rev

Rev 3386 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3027 decky 1
OUTPUT_FORMAT("elf32-littlearm")
2
ENTRY(start)
3
 
4
SECTIONS {
3024 decky 5
	.boot 0x0: AT (0) {
6
		*(BOOTSTRAP);
7
		*(.text);
8
 
9
		*(.rodata);
10
		*(.rodata.*);
11
		*(.data);		/* initialized data */
12
		*(.sdata);
13
		*(.sdata2);
14
		*(.sbss);
15
		*(.scommon);
16
		*(.bss);		/* uninitialized static variables */	
17
		*(COMMON); 		/* global variables */
18
		*(.reginfo);
19
 
4718 mejdrech 20
		. = 0x2000;
21
		*(ST);			/* bootloader stack section */
22
 
3024 decky 23
		. = 0x4000;
24
		*(PT);			/* page table placed at 0x4000 */
3027 decky 25
[[COMPONENTS]]
26
	}
27
}