Remove building with NOCRYPTO option
[minix3.git] / minix / kernel / arch / earm / kernel.lds
blob860e4016788c5f3d11eff075d5545831c0fc00e8
1 OUTPUT_ARCH("arm")
2 ENTRY(__k_unpaged_MINIX)
4 _kern_phys_base = 0x80200000;   /* phys 4MB aligned for convenient remapping */
5 _kern_vir_base =  0xF0400000;   /* map kernel high for max. user vir space */
6 _kern_offset = (_kern_vir_base - _kern_phys_base);
8 __k_unpaged__kern_offset = _kern_offset;
9 __k_unpaged__kern_vir_base = _kern_vir_base;
10 __k_unpaged__kern_phys_base = _kern_phys_base;
12 SECTIONS
14         . = _kern_phys_base;
15         __k_unpaged__kern_unpaged_start = .;
17         .unpaged_text ALIGN(4096) : { unpaged_*.o(.startup); unpaged_*.o(.text) }
18         .unpaged_data ALIGN(4096) : { unpaged_*.o(.data .rodata*) }
19         __k_unpaged__kern_unpaged_edata = .;
21         .unpaged_bss  ALIGN(4096) : { unpaged_*.o(.bss COMMON) }
22         __k_unpaged__kern_unpaged_end = .;
24         . += _kern_offset;
26         . = ALIGN(4096); usermapped_start = .;
27         .usermapped_glo : AT(ADDR(.usermapped_glo) - _kern_offset) { *(.usermapped_glo) }
28         . = ALIGN(4096); usermapped_nonglo_start = .;
29         .usermapped : AT(ADDR(.usermapped) - _kern_offset) { *(.usermapped) }
30         . = ALIGN(4096); usermapped_end = .;
31         .text             : AT(ADDR(.text) - _kern_offset) { *(.text*) }
32         _etext = .;
33         .data ALIGN(4096) : AT(ADDR(.data) - _kern_offset) { *(.data .rodata* ) }
34         . = ALIGN(4096);
35         _edata = .;
36         __k_unpaged__edata = . - _kern_offset;
37         .bss ALIGN(4096)  : AT(ADDR(.bss) - _kern_offset) { *(.bss* COMMON)
38                 __k_unpaged__kern_size = . - _kern_vir_base;
39                 _kern_size = __k_unpaged__kern_size;
40                 
41                 . += 4096;
42         }
43         _end = .;
44         __k_unpaged__end = . - _kern_offset;
46       /DISCARD/ :
47        {
48                *(.ARM.exidx*)
49        }