aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2009-01-17 19:42:31 -0500
committerKevin O'Connor <kevin@koconnor.net>2009-01-17 19:42:31 -0500
commitf5d025a7e139c865f322c8565008187a553ec1a6 (patch)
tree6fb46144a563869628a63c05d363280757ee87d6 /src
parentd67a70344e6a8e7bd3af83065c1bf728808a53cc (diff)
downloadseabios-hppa-f5d025a7e139c865f322c8565008187a553ec1a6.zip
seabios-hppa-f5d025a7e139c865f322c8565008187a553ec1a6.tar.gz
seabios-hppa-f5d025a7e139c865f322c8565008187a553ec1a6.tar.bz2
Minor - don't force align the 32 bss.
The sections already carry their required alignment - the force align is a leftover from past code.
Diffstat (limited to 'src')
-rw-r--r--src/rombios.lds.S2
-rw-r--r--src/rombios16.lds.S2
-rw-r--r--src/rombios32.lds.S4
3 files changed, 2 insertions, 6 deletions
diff --git a/src/rombios.lds.S b/src/rombios.lds.S
index 61a04c4..e43822a 100644
--- a/src/rombios.lds.S
+++ b/src/rombios.lds.S
@@ -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);
diff --git a/src/rombios16.lds.S b/src/rombios16.lds.S
index 61de421..c52afdb 100644
--- a/src/rombios16.lds.S
+++ b/src/rombios16.lds.S
@@ -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")
diff --git a/src/rombios32.lds.S b/src/rombios32.lds.S
index 6d73537..4aa88f0 100644
--- a/src/rombios32.lds.S
+++ b/src/rombios32.lds.S
@@ -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)
}