Files
RedBear-OS/local/config/drivers.d/30-graphics.toml
T
vasilito b9de373b31 Merge bootprocess branch overlay into 0.2.0
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
2026-05-27 06:47:23 +03:00

72 lines
1.3 KiB
TOML

# Graphics and display drivers
[[driver]]
name = "vesad"
description = "VESA BIOS display driver"
priority = 60
command = ["/usr/lib/drivers/vesad"]
[[driver.match]]
bus = "pci"
class = 0x03
[[driver]]
name = "redox-drm"
description = "DRM/KMS display driver (AMD + Intel + VirtIO)"
priority = 60
command = ["/usr/bin/redox-drm"]
# Only match known GPU vendors. Class 0x03 alone catches QEMU VGA
# (vendor 0x1234) which redox-drm rejects with a fatal error.
[[driver.match]]
bus = "pci"
vendor = 0x1002
class = 0x03
[[driver.match]]
bus = "pci"
vendor = 0x8086
class = 0x03
[[driver.match]]
bus = "pci"
vendor = 0x1AF4
class = 0x03
[[driver]]
name = "redox-drm-virtio"
description = "VirtIO GPU DRM/KMS driver"
priority = 61
command = ["/usr/bin/redox-drm"]
[[driver.match]]
bus = "pci"
vendor = 0x1AF4
class = 0x03
# Intel GPU — matched specifically for the display class
[[driver]]
name = "redox-drm"
description = "Intel GPU display driver"
priority = 61
command = ["/usr/bin/redox-drm"]
[[driver.match]]
bus = "pci"
vendor = 0x8086
class = 0x03
subclass = 0x00
# AMD GPU — matched specifically for the display class
[[driver]]
name = "redox-drm"
description = "AMD GPU display driver"
priority = 61
command = ["/usr/bin/redox-drm"]
[[driver.match]]
bus = "pci"
vendor = 0x1002
class = 0x03
subclass = 0x00