Move netstack to the base repo

This commit is contained in:
bjorn3 2025-03-10 21:29:14 +01:00
parent 92504e6bab
commit c06e5b14e4
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"