]> Joshua Wise's Git repositories - netwatch.git/blobdiff - aseg-paging/aseg.lds
Be a little bit quieter, and consequentially be a lot bit faster.
[netwatch.git] / aseg-paging / aseg.lds
index 760fe92175c252059aa107f1fc07a6fd572a59e7..cf14790b025752b87bbda39f029cb834f7f50ec4 100644 (file)
@@ -19,15 +19,15 @@ SECTIONS
 
        . = 0x200000;
 
-       .maincode : {
-               *(.data);
-               *(.rodata);
-               *(.text);
-               _bss = .;
-               *(.bss);
-               _bssend = .;
-               _end = .;
-       }
+       .text : { *(.text); }
+       .data : { *(.data); }
+       .rodata : { *(.rodata); }
+       .text : { *(.text); }
+       
+       _bss = .;
+       .bss : { *(.bss); }
+       _bssend = .;
+       _end = .;
 
        .stack : { 
                . = . + 0x10000;
@@ -39,7 +39,7 @@ SECTIONS
        .info : {
                _start = .;
                LONG(0x5754454E);
-               LONG(__firstrun_start);
+               LONG(__firstrun_stub);
        }
 
 }
This page took 0.021972 seconds and 4 git commands to generate.