mirror of
https://github.com/ipxe/ipxe
synced 2025-12-20 12:00:19 +03:00
Created a bus/device API that allows for the ROM prefix to specify an
initial device, and will also allow for e.g. a device menu to be presented to the user.
This commit is contained in:
@@ -142,9 +142,15 @@ SECTIONS {
|
||||
*(.data.*)
|
||||
|
||||
/* Various tables */
|
||||
boot_drivers = .;
|
||||
*(.boot_drivers)
|
||||
boot_drivers_end = .;
|
||||
device_drivers = .;
|
||||
*(.drivers.device)
|
||||
device_drivers_end = .;
|
||||
bus_drivers = .;
|
||||
*(.drivers.bus)
|
||||
bus_drivers_end = .;
|
||||
type_drivers = .;
|
||||
*(.drivers.type)
|
||||
type_drivers_end = .;
|
||||
console_drivers = .;
|
||||
*(.drivers.console)
|
||||
console_drivers_end = .;
|
||||
|
||||
Reference in New Issue
Block a user