]> Joshua Wise's Git repositories - netwatch.git/blobdiff - aseg/aseg.lds
initial checkin of lwip, enough to build
[netwatch.git] / aseg / aseg.lds
index a3a8ecefbd67d7c97b56b8282e8c063a4abdbdb1..83afbaeed1ef08323f9dc91b26df594a4dc2de54 100644 (file)
@@ -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);
+       }
 }
This page took 0.039555 seconds and 4 git commands to generate.