7c7399e0a6
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.
21 lines
635 B
TOML
21 lines
635 B
TOML
[package]
|
|
name = "ehcid"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "EHCI USB 2.0 host controller driver for Red Bear OS"
|
|
|
|
[[bin]]
|
|
name = "ehcid"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
usb-core = { path = "../../usb-core/source" }
|
|
libredox = { version = "0.1", features = ["call", "std"] }
|
|
log = { version = "0.4", features = ["std"] }
|
|
redox-driver-sys = { path = "../../redox-driver-sys/source" }
|
|
redox-scheme = "0.11"
|
|
syscall = { package = "redox_syscall", version = "0.7", features = ["std"] }
|
|
|
|
[target.'cfg(target_os = "redox")'.dependencies]
|
|
redox-driver-sys = { path = "../../redox-driver-sys/source", features = ["redox"] }
|