]> Joshua Wise's Git repositories - netwatch.git/commitdiff
The good news is that I changed something and it worked. The bad news is that I...
authorJoshua Wise <joshua@rebirth.joshuawise.com>
Mon, 10 Nov 2008 18:16:46 +0000 (13:16 -0500)
committerJoshua Wise <joshua@rebirth.joshuawise.com>
Mon, 10 Nov 2008 18:16:46 +0000 (13:16 -0500)
aseg-paging/aseg.lds

index 7c70a08b64b7606344894ad288e8721e7b9b0988..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;
This page took 0.025393 seconds and 4 git commands to generate.