Subversion Repositories HelenOS-historic

Rev

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

Rev Author Line No. Line
504 decky 1
STARTUP(../libc/arch/ARCH/src/entry.o)
447 decky 2
ENTRY(__entry)
3
 
4
SECTIONS {
937 jermar 5
	. = 0x4000;
943 palkovsky 6
	.init : SUBALIGN(0x4000) {
7
		*(.init);
8
	}
9
	.text : {
10
	        *(.text);
11
		*(.rodata*);
12
	}
13
	.data ALIGN(0x4000) :  {
14
		*(.data);
15
	}
16
	.bss : {
17
		*(.bss);
18
		*(.sbss);
19
		*(COMMON);
20
	}
21
	/DISCARD/ : {
937 jermar 22
		*(*);
23
	}
447 decky 24
}