3652bca828
The previous P0-redox-ioctl-syscall-0.8.1.patch on relibc was useless
because base uses `redox-ioctl = { git = ... relibc.git }` which
bypasses the relibc recipe's local source.
Add a [patch] override in base/Cargo.toml to use the local relibc
source's redox-ioctl instead, which has the syscall 0.8.1 pin.
8 lines
324 B
Diff
8 lines
324 B
Diff
--- a/Cargo.toml
|
|
+++ b/Cargo.toml
|
|
@@ -120,3 +120,3 @@ acpi = { git = "https://gitlab.redox-os.org/redox-os/acpi.git", branch = "redox-6.x" }
|
|
|
|
[patch."https://gitlab.redox-os.org/redox-os/relibc.git"]
|
|
-#redox-ioctl = { path = "../../relibc/source/redox-ioctl" }
|
|
+redox-ioctl = { path = "../../relibc/source/redox-ioctl" }
|