b9de373b31
Restore all bootprocess branch files that were overwritten by later 0.2.0 commits. This overlay brings back the complete boot infrastructure: - Configs: redbear-full, redbear-mini, redbear-device-services, driver .d files - Kernel: IRQ affinity, x2APIC, C-states, NUMA (SLIT/SRAT), MCS locks, cpuidle - Base patches: P0-P55 + new P6 (lived block_size=512) + P57 (fbbootlogd graceful init) - Driver infra: driver-manager, udev-shim, thermald, cpufreqd, iommu, redox-driver-sys/core - GPU: redox-drm with improved connector handling - System: redbear-info, redbear-hwutils phase-timer-check - Build system: fetch.rs improvements, build-iso.sh, run_full.sh - Kernel source: new ACPI (SLIT, SRAT), cpuidle, cstate, MCS lock modules 83 files changed, +3966/-1248 lines
58 lines
935 B
TOML
58 lines
935 B
TOML
# Network drivers
|
|
|
|
[[driver]]
|
|
name = "e1000d"
|
|
description = "Intel Gigabit Ethernet"
|
|
priority = 50
|
|
command = ["/usr/lib/drivers/e1000d"]
|
|
|
|
[[driver.match]]
|
|
bus = "pci"
|
|
vendor = 0x8086
|
|
class = 2
|
|
|
|
[[driver]]
|
|
name = "rtl8168d"
|
|
description = "Realtek 8168/8125 Ethernet"
|
|
priority = 50
|
|
command = ["/usr/lib/drivers/rtl8168d"]
|
|
|
|
[[driver.match]]
|
|
bus = "pci"
|
|
vendor = 0x10EC
|
|
class = 2
|
|
|
|
[[driver]]
|
|
name = "rtl8139d"
|
|
description = "Realtek 8139 Ethernet"
|
|
priority = 50
|
|
command = ["/usr/lib/drivers/rtl8139d"]
|
|
|
|
[[driver.match]]
|
|
bus = "pci"
|
|
vendor = 0x10EC
|
|
device = 0x8139
|
|
|
|
[[driver]]
|
|
name = "ixgbed"
|
|
description = "Intel 10 Gigabit Ethernet"
|
|
priority = 50
|
|
command = ["/usr/lib/drivers/ixgbed"]
|
|
|
|
[[driver.match]]
|
|
bus = "pci"
|
|
vendor = 0x8086
|
|
class = 2
|
|
subclass = 0
|
|
|
|
[[driver]]
|
|
name = "virtio-netd"
|
|
description = "VirtIO network driver"
|
|
priority = 50
|
|
command = ["/usr/lib/drivers/virtio-netd"]
|
|
|
|
[[driver.match]]
|
|
bus = "pci"
|
|
vendor = 0x1AF4
|
|
class = 2
|