From 2636531bb3286e084e832fe35b9006337c88a04d Mon Sep 17 00:00:00 2001 From: vasilito Date: Mon, 6 Jul 2026 22:31:37 +0300 Subject: [PATCH] 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. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2686a86901..0dfafbe8a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" }