Sfoglia il codice sorgente

All boot device drivers are now lumped together in boot_drivers

tags/v0.9.3
Michael Brown 19 anni fa
parent
commit
0effbefe6f
1 ha cambiato i file con 3 aggiunte e 6 eliminazioni
  1. 3
    6
      src/arch/i386/scripts/i386.lds

+ 3
- 6
src/arch/i386/scripts/i386.lds Vedi File

@@ -142,12 +142,9 @@ SECTIONS {
142 142
 	*(.data.*)
143 143
 
144 144
 	/* Various tables */
145
-	pci_drivers = .;
146
-	*(.drivers.pci)
147
-	pci_drivers_end = .;
148
-	isa_drivers = .;
149
-	*(.drivers.isa)
150
-	isa_drivers_end = .;
145
+	boot_drivers = .;
146
+	*(.boot_drivers)
147
+	boot_drivers_end = .;
151 148
 	console_drivers = .;
152 149
 	*(.drivers.console)
153 150
 	console_drivers_end = .;

Loading…
Annulla
Salva