]> xenbits.xensource.com Git - seabios.git/commitdiff
Minor - don't force align the 32 bss.
authorKevin O'Connor <kevin@koconnor.net>
Sun, 18 Jan 2009 00:42:31 +0000 (19:42 -0500)
committerKevin O'Connor <kevin@koconnor.net>
Sun, 18 Jan 2009 00:42:31 +0000 (19:42 -0500)
The sections already carry their required alignment - the force align
    is a leftover from past code.

src/rombios.lds.S
src/rombios16.lds.S
src/rombios32.lds.S

index 61a04c4623fc4d8aa2774cf1d54c6a517f020724..e43822ae1af0b9dfe7fdc30fffbb5dee2710a7cc 100644 (file)
@@ -4,8 +4,6 @@
 //
 // This file may be distributed under the terms of the GNU LGPLv3 license.
 
-#include "config.h"
-
 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
 OUTPUT_ARCH("i386")
 ENTRY(post32);
index 61de42163e6db0bd7e034e5efb0f2b7e74161fee..c52afdb784c5ad5dabecb45b822848b74f5b5fbd 100644 (file)
@@ -4,7 +4,7 @@
 //
 // This file may be distributed under the terms of the GNU LGPLv3 license.
 
-#include "config.h"
+#include "config.h" // BUILD_BIOS_ADDR
 
 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
 OUTPUT_ARCH("i386")
index 6d735376c518e4944c98f7fbc36a914864cd4b25..4aa88f083264bddd28afb6dfd633c2cf202cfa45 100644 (file)
@@ -4,7 +4,7 @@
 //
 // This file may be distributed under the terms of the GNU LGPLv3 license.
 
-#include "config.h"
+#include "config.h" // BUILD_BIOS_ADDR
 
 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
 OUTPUT_ARCH("i386")
@@ -17,8 +17,6 @@ SECTIONS
                 code32_rodata = . ;
                 *(.rodata*)
                 *(.data)
-                . = ALIGN(16) ;
-                code32_bss = . ;
                 *(.bss)
                 *(COMMON)
                 }