USB EHCI should yield() whil waiting for controller to ack reset.
[seabios.git] / src / rombios16.lds.S
index 4609c1ca4ea9a8675e93d92e6ab5fc74163980e2..6d382f036e2b6c805607ea913b5da3b273470a58 100644 (file)
@@ -1,22 +1,21 @@
 // Linker definitions for 16bit code
 //
-// Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
+// Copyright (C) 2008,2009  Kevin O'Connor <kevin@koconnor.net>
 //
-// This file may be distributed under the terms of the GNU GPLv3 license.
-
-#include "config.h"
+// This file may be distributed under the terms of the GNU LGPLv3 license.
 
 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
 OUTPUT_ARCH("i386")
+PHDRS
+{
+}
 SECTIONS
 {
-        .text16 ( _code32_code16_start - BUILD_BIOS_ADDR ) : {
-                *(.text)
-                *(.rodata*)
-                *(.data)
+        .data16 data16_start : {
+                *(.data16)
                 }
-
-        .text16.fixed.addr BUILD_START_FIXED : {
-                *(.text.fixed.addr)
+        .text16 text16_start : {
+                *(.text16)
                 }
+        /DISCARD/ : { *(.discard*) }
 }