aboutsummaryrefslogtreecommitdiffstats
path: root/vgasrc/vgalayout.lds.S
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2009-05-06 23:35:59 -0400
committerKevin O'Connor <kevin@koconnor.net>2009-05-06 23:35:59 -0400
commit1f2c307bc3ed23625c1a2842ff8f92a44917aebf (patch)
tree5a5296955020ac03b0b2babbb097d2b74a55ea85 /vgasrc/vgalayout.lds.S
parentf8e176c48b0a4c6609f06786052ba711b324ca2a (diff)
downloadseabios-1f2c307bc3ed23625c1a2842ff8f92a44917aebf.tar.gz
Add initial port of the "open source vga bios" project.
This is an initial import of the code from: http://www.nongnu.org/vgabios/ The code has been ported from bcc to gcc and gas. This is an initial import - many functions have not been ported; many bugs are present.
Diffstat (limited to 'vgasrc/vgalayout.lds.S')
-rw-r--r--vgasrc/vgalayout.lds.S24
1 files changed, 24 insertions, 0 deletions
diff --git a/vgasrc/vgalayout.lds.S b/vgasrc/vgalayout.lds.S
new file mode 100644
index 00000000..b5f0319f
--- /dev/null
+++ b/vgasrc/vgalayout.lds.S
@@ -0,0 +1,24 @@
+// Linker definitions for an option rom
+//
+// Copyright (C) 2009 Kevin O'Connor <kevin@koconnor.net>
+//
+// This file may be distributed under the terms of the GNU LGPLv3 license.
+
+OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
+OUTPUT_ARCH("i386")
+ENTRY(_optionrom_entry)
+SECTIONS
+{
+ .text 0 : {
+ *(.rom.header)
+ *(.text.*)
+ _rodata = . ;
+ *(.rodata.__func__.*)
+ *(.rodata.str1.1)
+ *(.data16.*)
+ }
+
+ // Discard regular data sections to force a link error if
+ // 16bit code attempts to access data not marked with VAR16.
+ /DISCARD/ : { *(.text*) *(.rodata*) *(.data*) *(.bss*) *(COMMON) }
+}