Merge branch 'move_netstack_base' into 'master'

Move netstack to the base repo

See merge request redox-os/cookbook!469
This commit is contained in:
Jeremy Soller 2025-03-12 22:01:55 +00:00
commit 5792d103f7
2 changed files with 9 additions and 5 deletions

View File

@ -13,4 +13,13 @@ for package in ipcd ptyd; do
"target/${TARGET}/${build_type}/${package}" \
"${COOKBOOK_STAGE}/usr/bin/${package}"
done
"${COOKBOOK_CARGO}" build \
--manifest-path "${COOKBOOK_SOURCE}/netstack/Cargo.toml" \
${build_flags}
for bin in smolnetd dnsd; do
cp -v \
"target/${TARGET}/${build_type}/${bin}" \
"${COOKBOOK_STAGE}/usr/bin/${bin}"
done
"""

View File

@ -1,5 +0,0 @@
[source]
git = "https://gitlab.redox-os.org/redox-os/netstack.git"
[build]
template = "cargo"