From: Joshua Wise Date: Mon, 10 Nov 2008 18:16:46 +0000 (-0500) Subject: The good news is that I changed something and it worked. The bad news is that I... X-Git-Url: http://git.joshuawise.com/netwatch.git/commitdiff_plain/720d0679adb8080f32a56546f60acb218ae9d62c The good news is that I changed something and it worked. The bad news is that I Changed something and it worked. --- diff --git a/aseg-paging/aseg.lds b/aseg-paging/aseg.lds index 7c70a08..cf14790 100644 --- a/aseg-paging/aseg.lds +++ b/aseg-paging/aseg.lds @@ -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;