USB EHCI should yield() whil waiting for controller to ack reset.
[seabios.git] / src / rombios16.lds.S
index 6e6a2f1f4b125e49aacdae738370eb3d2c83fb28..6d382f036e2b6c805607ea913b5da3b273470a58 100644 (file)
@@ -4,13 +4,18 @@
 //
 // This file may be distributed under the terms of the GNU LGPLv3 license.
 
-#include "config.h" // BUILD_BIOS_ADDR
-
 OUTPUT_FORMAT("elf32-i386", "elf32-i386", "elf32-i386")
 OUTPUT_ARCH("i386")
+PHDRS
+{
+}
 SECTIONS
 {
-        .text16 code16_start : {
+        .data16 data16_start : {
+                *(.data16)
+                }
+        .text16 text16_start : {
                 *(.text16)
                 }
+        /DISCARD/ : { *(.discard*) }
 }