]> Joshua Wise's Git repositories - netwatch.git/commitdiff
Rearrange sections a bit in aseg.lds to buy us a bit more space
authorJoshua Wise <joshua@rebirth.joshuawise.com>
Mon, 20 Oct 2008 00:33:59 +0000 (20:33 -0400)
committerJoshua Wise <joshua@rebirth.joshuawise.com>
Mon, 20 Oct 2008 00:33:59 +0000 (20:33 -0400)
aseg/aseg.lds

index 83afbaeed1ef08323f9dc91b26df594a4dc2de54..02c104d2b2b4da775ccd7965f161f7ce0cd41c78 100644 (file)
@@ -1,5 +1,6 @@
 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
 OUTPUT_ARCH(i386)
+
 SECTIONS
 {
        . = 0xA8000;
@@ -8,9 +9,11 @@ SECTIONS
                aseg.o
                LONG(_stacktop);
                LONG(smi_entry);
-               *(.text);
                *(.data);
                *(.rodata);
+
+               . = 0x8000;
+               *(.text);
        }
 
        . = 0x1FF80000;
This page took 0.024495 seconds and 4 git commands to generate.