source: trunk/kernel/obj.tsar/kldscript@ 14

Last change on this file since 14 was 1, checked in by alain, 9 years ago

First import

File size: 468 bytes
Line 
1vaddr = 0x00000000;
2SECTIONS
3{
4 .ktext vaddr : {
5 __ktext_start = .;
6 *(.kentry)
7 __kentry_end = .;
8 __uspace_start = .;
9 *(.uspace)
10 __uspace_end = .;
11 __virtual_end = .;
12 *(.text)
13 *(.rodata*)
14 . = ALIGN(0x1000);
15 __ktext_end = .;
16 }
17 .kdata : {
18 __kdata_start = .;
19 *(.data*)
20 *(.bss*)
21 *(COMMON*)
22 *(.scommon*)
23 . = ALIGN(0x1000);
24 __kdata_end = .;
25 __heap_start = .;
26 *(.kheader)
27 }
28}
Note: See TracBrowser for help on using the repository browser.