diff options
| author | Michael Brown | 2005-04-12 18:46:15 +0200 |
|---|---|---|
| committer | Michael Brown | 2005-04-12 18:46:15 +0200 |
| commit | 0effbefe6f1a28dd4d9fa7041a14dad3d1e33ccb (patch) | |
| tree | 7f5fcd804344681b90ad5d4eb5a0d75a34288195 | |
| parent | Matches new pci.c interface. (diff) | |
| download | ipxe-0effbefe6f1a28dd4d9fa7041a14dad3d1e33ccb.tar.gz ipxe-0effbefe6f1a28dd4d9fa7041a14dad3d1e33ccb.tar.xz ipxe-0effbefe6f1a28dd4d9fa7041a14dad3d1e33ccb.zip | |
All boot device drivers are now lumped together in boot_drivers
| -rw-r--r-- | src/arch/i386/scripts/i386.lds | 9 |
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 = .; |
