Files
RedBear-OS/local/config/drivers.d/10-network.toml
T

71 lines
1.3 KiB
TOML

# Network drivers
[[driver]]
name = "e1000d"
description = "Intel Gigabit Ethernet"
priority = 50
command = ["/usr/lib/drivers/e1000d"]
[[driver.match]]
vendor = 0x8086
class = 2
# Ethernet only (subclass 0x00) — without this filter the wildcard also claims
# Intel Wi-Fi (class 0x02 subclass 0x80, e.g. BE201 8086:7740) and collides with
# redbear-iwlwifi. Same defect class fixed for rtl8168d below.
subclass = 0
[[driver]]
name = "rtl8168d"
description = "Realtek 8168/8169 Gigabit Ethernet"
priority = 50
command = ["/usr/lib/drivers/rtl8168d"]
[[driver.match]]
vendor = 0x10EC
class = 2
subclass = 0
device = [0x8168, 0x8169]
[[driver]]
name = "redbear-r8125d"
description = "Realtek RTL8125 2.5GbE Ethernet"
priority = 55
command = ["/usr/lib/drivers/redbear-r8125d"]
[[driver.match]]
vendor = 0x10EC
device = [0x8125]
class = 2
subclass = 0
[[driver]]
name = "rtl8139d"
description = "Realtek 8139 Ethernet"
priority = 50
command = ["/usr/lib/drivers/rtl8139d"]
[[driver.match]]
vendor = 0x10EC
device = 0x8139
[[driver]]
name = "ixgbed"
description = "Intel 10 Gigabit Ethernet"
priority = 50
command = ["/usr/lib/drivers/ixgbed"]
[[driver.match]]
vendor = 0x8086
class = 2
subclass = 0
[[driver]]
name = "virtio-netd"
description = "VirtIO network driver"
priority = 50
command = ["/usr/lib/drivers/virtio-netd"]
[[driver.match]]
vendor = 0x1AF4
class = 2