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
20 lines
596 B
TOML
20 lines
596 B
TOML
[package]
|
|
name = "driver-manager"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Device driver manager with deferred and async probing"
|
|
|
|
[[bin]]
|
|
name = "driver-manager"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
redox-driver-core = { path = "../../drivers/redox-driver-core" }
|
|
redox-driver-pci = { path = "../../drivers/redox-driver-pci" }
|
|
redox-driver-acpi = { path = "../../drivers/redox-driver-acpi" }
|
|
pcid_interface = { path = "../../../../recipes/core/base/source/drivers/pcid", package = "pcid" }
|
|
redox_syscall = "0.7"
|
|
log = "0.4"
|
|
toml = "0.8"
|
|
serde = { version = "1", features = ["derive"] }
|