Procházet zdrojové kódy

All boot device drivers are now lumped together in boot_drivers

tags/v0.9.3
Michael Brown před 20 roky
rodič
revize
0effbefe6f
1 změnil soubory, kde provedl 3 přidání a 6 odebrání
  1. 3
    6
      src/arch/i386/scripts/i386.lds

+ 3
- 6
src/arch/i386/scripts/i386.lds Zobrazit soubor

142
 	*(.data.*)
142
 	*(.data.*)
143
 
143
 
144
 	/* Various tables */
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
 	console_drivers = .;
148
 	console_drivers = .;
152
 	*(.drivers.console)
149
 	*(.drivers.console)
153
 	console_drivers_end = .;
150
 	console_drivers_end = .;

Načítá se…
Zrušit
Uložit