Skip to content
Snippets Groups Projects
Verified Commit fec89f1a authored by Jeremy Soller's avatar Jeremy Soller
Browse files

drivers-initfs package for smaller size

parent 7102c3f9
No related branches found
No related tags found
No related merge requests found
[source]
git = "https://gitlab.redox-os.org/redox-os/drivers.git"
[build]
template = "custom"
script = """
BINS=(
acpid
ahcid
nvmed
pcid
ps2d
vesad
)
mkdir -pv "${COOKBOOK_STAGE}/bin"
for bin in "${BINS[@]}"
do
"${COOKBOOK_CARGO}" rustc --release \
--manifest-path "${COOKBOOK_SOURCE}/${bin}/Cargo.toml" \
--bin "${bin}" \
-- \
-C opt-level=z \
-C panic=abort
cp -v "target/${TARGET}/release/${bin}" "${COOKBOOK_STAGE}/bin"
done
mkdir -pv "${COOKBOOK_STAGE}/etc/pcid"
cp -v "${COOKBOOK_SOURCE}/initfs.toml" "${COOKBOOK_STAGE}/etc/pcid/initfs.toml"
"""
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment