Merge branch 'i586_target' into 'master'

Update redoxer for i586-unknown-redox support

See merge request redox-os/cookbook!673
This commit is contained in:
Jeremy Soller 2025-11-01 09:33:51 -06:00
commit 1681f34fdd
3 changed files with 7 additions and 3 deletions

6
Cargo.lock generated
View File

@ -2202,12 +2202,14 @@ dependencies = [
[[package]]
name = "redoxer"
version = "0.2.55"
version = "0.2.56"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee006e9945ef5ad5b9d877465b5bbf94f37d37aa2d0765c8bcb7a6cd401775b6"
checksum = "1816d3f9e72b724ef9e6768426f767900f778ab3074313f42f9975faa88070fc"
dependencies = [
"anyhow",
"dirs 6.0.0",
"proc-mounts",
"redox-pkg",
"redox_installer",
"redox_syscall",
"redoxfs",

View File

@ -32,7 +32,7 @@ pkgar-core = { path = "pkgar/pkgar-core" }
pkgar-keys = { path = "pkgar/pkgar-keys" }
portable-pty = "0.9.0"
redox-pkg = "0.2.8"
redoxer = "0.2"
redoxer = "0.2.56"
regex = "1.11"
serde = { version = "=1.0.197", features = ["derive"] }
termion = "4"

View File

@ -15,6 +15,8 @@ ARCH="${TARGET%%-*}"
HOST="$TARGET"
if [ x"${HOST}" == x"riscv64gc-unknown-redox" ] ; then
HOST="riscv64-unknown-redox"
elif [ x"${HOST}" == x"i586-unknown-redox" ] ; then
HOST="i686-unknown-redox"
fi
# Cookbook requires correct CWD to work