summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Brown2005-04-12 18:46:15 +0200
committerMichael Brown2005-04-12 18:46:15 +0200
commit0effbefe6f1a28dd4d9fa7041a14dad3d1e33ccb (patch)
tree7f5fcd804344681b90ad5d4eb5a0d75a34288195 /src
parentMatches new pci.c interface. (diff)
downloadipxe-0effbefe6f1a28dd4d9fa7041a14dad3d1e33ccb.tar.gz
ipxe-0effbefe6f1a28dd4d9fa7041a14dad3d1e33ccb.tar.xz
ipxe-0effbefe6f1a28dd4d9fa7041a14dad3d1e33ccb.zip
All boot device drivers are now lumped together in boot_drivers
Diffstat (limited to 'src')
-rw-r--r--src/arch/i386/scripts/i386.lds9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/arch/i386/scripts/i386.lds b/src/arch/i386/scripts/i386.lds
index 6888da364..fc44683a0 100644
--- a/src/arch/i386/scripts/i386.lds
+++ b/src/arch/i386/scripts/i386.lds
@@ -142,12 +142,9 @@ SECTIONS {
*(.data.*)
/* Various tables */
- pci_drivers = .;
- *(.drivers.pci)
- pci_drivers_end = .;
- isa_drivers = .;
- *(.drivers.isa)
- isa_drivers_end = .;
+ boot_drivers = .;
+ *(.boot_drivers)
+ boot_drivers_end = .;
console_drivers = .;
*(.drivers.console)
console_drivers_end = .;