X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/37e45c7c11b6af276ba23505bbdbf218ff915ed8..d7b9d0f71d616674ad3d6e26b62198f33e7c5112:/aseg/aseg.lds diff --git a/aseg/aseg.lds b/aseg/aseg.lds index a3a8ece..83afbae 100644 --- a/aseg/aseg.lds +++ b/aseg/aseg.lds @@ -7,9 +7,7 @@ SECTIONS _start = .; aseg.o LONG(_stacktop); - LONG(_bss); - LONG(_bssend - _bss); - LONG(__start); + LONG(smi_entry); *(.text); *(.data); *(.rodata); @@ -26,4 +24,11 @@ SECTIONS . = ALIGN(0x10); _stacktop = .; } + + . = 0x10000; + .info : { + _start = .; + LONG(0x5754454E); + LONG(__firstrun_start); + } }