initial commit

This commit is contained in:
2025-10-01 16:45:04 -07:00
commit 17ca11f239
21 changed files with 610 additions and 0 deletions

20
hack/clean.sh Executable file
View File

@@ -0,0 +1,20 @@
#!/bin/sh
set -e
cd "$(dirname "${0}")/.." || exit 1
. "hack/common.sh"
delete_image() {
IMAGE="${1}"
docker image ls -q --no-trunc --filter "reference=${DOCKER_PREFIX}/${IMAGE}" | xargs -rn1 docker image rm
}
cargo clean || true
if command -v docker >/dev/null 2>&1; then
delete_image sprout-utils-copy || true
delete_image sprout-ovmf || true
delete_image sprout-x86_64 || true
delete_image sprout-aarch64 || true
fi