Kernel/arm7 - Fiddling, still having issues with VMM
[tpg/acess2.git] / Kernel / arch / arm7 / link.ld
index b17677b..329bc9b 100644 (file)
@@ -5,13 +5,17 @@ _kernel_base = 0x80000000;
 SECTIONS
 {
        . = 0;
+       .init :
+       {
+               *(.init)
+       }
        . += _kernel_base;
        .text : AT( ADDR(.text) - _kernel_base )
        {
                *(.text*)
                *(.rodata*)
        }
-       .data ALIGN(0x1000) : AT( ADDR(.data) - _kernel_base )
+       .data ALIGN(0x4000) : AT( ADDR(.data) - _kernel_base )
        {
                *(.padata)
                *(.data*)

UCC git Repository :: git.ucc.asn.au