X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/f54c68a085c376bf5e2d64b50aab28a3f46d0eac..6e6d4a8b902639de18da98519a2141ea22432700:/aseg/aseg.lds?ds=inline diff --git a/aseg/aseg.lds b/aseg/aseg.lds index 2d805bb..83afbae 100644 --- a/aseg/aseg.lds +++ b/aseg/aseg.lds @@ -3,9 +3,32 @@ OUTPUT_ARCH(i386) SECTIONS { . = 0xA8000; - - .aseg 0xA8000 : { + .aseg : { _start = .; aseg.o + LONG(_stacktop); + LONG(smi_entry); + *(.text); + *(.data); + *(.rodata); + } + + . = 0x1FF80000; + .bss : { + _bss = .; + *(.bss); + _bssend = .; + } + .stack : { + . = . + 0x10000; + . = ALIGN(0x10); + _stacktop = .; + } + + . = 0x10000; + .info : { + _start = .; + LONG(0x5754454E); + LONG(__firstrun_start); } }