fix(userutils): use local relibc fork for redox-rt

The upstream git redox-rt was pulling in a mismatched syscall/libredox
ABI, causing getty/login to fail silently at runtime on redbear-mini.
Use the local fork path like base/bootstrap already do.
This commit is contained in:
2026-07-06 22:31:37 +03:00
parent 395bedfbea
commit 2636531bb3
+1 -1
View File
@@ -71,7 +71,7 @@ toml = "0.8.11"
ioslice = "0.6"
[target.'cfg(target_os = "redox")'.dependencies]
redox-rt = { git = "https://gitlab.redox-os.org/redox-os/relibc", default-features = false }
redox-rt = { path = "../relibc/redox-rt", default-features = false }
[patch.crates-io]
redox_syscall = { path = "../syscall" }