fix: use Debian 13.5.0 stable ISO to fix kernel module mismatch; gitignore ISOs

This commit is contained in:
2026-05-24 03:21:37 +00:00
parent dcdbedc26e
commit 19b02f91e9
5 changed files with 4 additions and 3 deletions
+1
View File
@@ -3,3 +3,4 @@ __pycache__/
*.pyo *.pyo
.env .env
credentials.md credentials.md
iso-output/*.iso
+1 -1
View File
@@ -1 +1 @@
0.2.1 0.2.2
+2 -2
View File
@@ -21,7 +21,7 @@ OUTPUT_DIR="$REPO_DIR/iso-output"
WORK_DIR="$(mktemp -d /tmp/kiosk-iso-XXXX)" WORK_DIR="$(mktemp -d /tmp/kiosk-iso-XXXX)"
trap 'rm -rf "$WORK_DIR"' EXIT trap 'rm -rf "$WORK_DIR"' EXIT
DEBIAN_ISO_URL="https://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/amd64/iso-cd/debian-testing-amd64-netinst.iso" DEBIAN_ISO_URL="https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-13.5.0-amd64-netinst.iso"
ISO_CACHE="$OUTPUT_DIR/debian-netinst.iso" ISO_CACHE="$OUTPUT_DIR/debian-netinst.iso"
OUTPUT_ISO="$OUTPUT_DIR/seniornet-kiosk.iso" OUTPUT_ISO="$OUTPUT_DIR/seniornet-kiosk.iso"
@@ -41,7 +41,7 @@ fi
if [ -f "$ISO_CACHE" ]; then if [ -f "$ISO_CACHE" ]; then
echo "==> Using cached Debian ISO: $ISO_CACHE" echo "==> Using cached Debian ISO: $ISO_CACHE"
else else
echo "==> Downloading Debian Trixie netinstall (~700 MB)..." echo "==> Downloading Debian 13 Trixie stable netinstall (~700 MB)..."
curl -L --progress-bar "$DEBIAN_ISO_URL" -o "$ISO_CACHE" curl -L --progress-bar "$DEBIAN_ISO_URL" -o "$ISO_CACHE"
fi fi
Binary file not shown.
Binary file not shown.