]> Joshua Wise's Git repositories - netwatch.git/blobdiff - aseg/aseg.lds
move packet to aseg-paging in preparation for aseg's deletion
[netwatch.git] / aseg / aseg.lds
index a3a8ecefbd67d7c97b56b8282e8c063a4abdbdb1..02c104d2b2b4da775ccd7965f161f7ce0cd41c78 100644 (file)
@@ -1,5 +1,6 @@
 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
 OUTPUT_ARCH(i386)
+
 SECTIONS
 {
        . = 0xA8000;
@@ -7,12 +8,12 @@ SECTIONS
                _start = .;
                aseg.o
                LONG(_stacktop);
-               LONG(_bss);
-               LONG(_bssend - _bss);
-               LONG(__start);
-               *(.text);
+               LONG(smi_entry);
                *(.data);
                *(.rodata);
+
+               . = 0x8000;
+               *(.text);
        }
 
        . = 0x1FF80000;
@@ -26,4 +27,11 @@ SECTIONS
                . = ALIGN(0x10);
                _stacktop = .;
        }
+
+       . = 0x10000;
+       .info : {
+               _start = .;
+               LONG(0x5754454E);
+               LONG(__firstrun_start);
+       }
 }
This page took 0.02206 seconds and 4 git commands to generate.