Files
RedBear-OS/local/recipes/system/redbear-hwutils/source/Cargo.toml
T
vasilito 7c7399e0a6 feat: recipe durability guard — prevents build system from deleting local recipes
Add guard-recipes.sh with four modes:
- --verify: check all local/recipes have correct symlinks into recipes/
- --fix: repair broken symlinks (run before builds)
- --save-all: snapshot all recipe.toml into local/recipes/
- --restore: recreate all symlinks from local/recipes/ (run after sync-upstream)

Wired into apply-patches.sh (post-patch) and sync-upstream.sh (post-sync).
This prevents the build system from deleting recipe files during
cargo cook, make distclean, or upstream source refresh.
2026-04-30 18:47:03 +01:00

146 lines
3.2 KiB
TOML

[package]
name = "redbear-hwutils"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "lspci"
path = "src/bin/lspci.rs"
[[bin]]
name = "lsusb"
path = "src/bin/lsusb.rs"
[[bin]]
name = "redbear-evtest"
path = "src/bin/evtest-rbos.rs"
[[bin]]
name = "redbear-input-inject"
path = "src/bin/input-inject-rbos.rs"
[[bin]]
name = "redbear-phase3-input-check"
path = "src/bin/redbear-phase3-input-check.rs"
[[bin]]
name = "redbear-phase4-wayland-check"
path = "src/bin/redbear-phase4-wayland-check.rs"
[[bin]]
name = "redbear-bluetooth-battery-check"
path = "src/bin/redbear-bluetooth-battery-check.rs"
[[bin]]
name = "redbear-phase5-network-check"
path = "src/bin/redbear-phase5-network-check.rs"
[[bin]]
name = "redbear-phase5-wifi-check"
path = "src/bin/redbear-phase5-wifi-check.rs"
[[bin]]
name = "redbear-phase5-wifi-capture"
path = "src/bin/redbear-phase5-wifi-capture.rs"
[[bin]]
name = "redbear-phase5-wifi-run"
path = "src/bin/redbear-phase5-wifi-run.rs"
[[bin]]
name = "redbear-phase5-wifi-analyze"
path = "src/bin/redbear-phase5-wifi-analyze.rs"
[[bin]]
name = "redbear-phase5-wifi-link-check"
path = "src/bin/redbear-phase5-wifi-link-check.rs"
[[bin]]
name = "redbear-phase6-kde-check"
path = "src/bin/redbear-phase6-kde-check.rs"
[[bin]]
name = "redbear-greeter-check"
path = "src/bin/redbear-greeter-check.rs"
[[bin]]
name = "redbear-drm-display-check"
path = "src/bin/redbear-drm-display-check.rs"
[[bin]]
name = "redbear-phase-iommu-check"
path = "src/bin/redbear-phase-iommu-check.rs"
[[bin]]
name = "redbear-phase-ps2-check"
path = "src/bin/redbear-phase-ps2-check.rs"
[[bin]]
name = "cmdline"
path = "src/bin/cmdline.rs"
[[bin]]
name = "redbear-phase-timer-check"
path = "src/bin/redbear-phase-timer-check.rs"
[[bin]]
name = "redbear-phase-dma-check"
path = "src/bin/redbear-phase-dma-check.rs"
[[bin]]
name = "redbear-phase-acpi-check"
path = "src/bin/redbear-phase-acpi-check.rs"
[[bin]]
name = "redbear-phase-pci-irq-check"
path = "src/bin/redbear-phase-pci-irq-check.rs"
[[bin]]
name = "redbear-phase1-evdev-check"
path = "src/bin/redbear-phase1-evdev-check.rs"
[[bin]]
name = "redbear-phase1-udev-check"
path = "src/bin/redbear-phase1-udev-check.rs"
[[bin]]
name = "redbear-usb-check"
path = "src/bin/redbear-usb-check.rs"
[[bin]]
name = "redbear-phase1-firmware-check"
path = "src/bin/redbear-phase1-firmware-check.rs"
[[bin]]
name = "redbear-phase1-drm-check"
path = "src/bin/redbear-phase1-drm-check.rs"
[[bin]]
name = "redbear-phase2-wayland-check"
path = "src/bin/redbear-phase2-wayland-check.rs"
[[bin]]
name = "redbear-phase3-kwin-check"
path = "src/bin/redbear-phase3-kwin-check.rs"
[[bin]]
name = "redbear-phase4-kde-check"
path = "src/bin/redbear-phase4-kde-check.rs"
[[bin]]
name = "redbear-phase5-gpu-check"
path = "src/bin/redbear-phase5-gpu-check.rs"
[[bin]]
name = "redbear-boot-check"
path = "src/bin/redbear-boot-check.rs"
[dependencies]
redbear-login-protocol = { path = "../../redbear-login-protocol/source" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
orbclient = "0.3"
redox-driver-sys = { path = "../../../drivers/redox-driver-sys/source" }
libredox = "0.1"
syscall = { package = "redox_syscall", version = "0.7", features = ["std"] }