From d2c52790941e67a18178c7fac5c756a99bd6b9b5 Mon Sep 17 00:00:00 2001 From: Daniel Date: Thu, 16 Jul 2026 14:11:25 +0200 Subject: [PATCH] refactor: add -y flag to linux-image installation for non-interactive setup --- build-rootfs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-rootfs.sh b/build-rootfs.sh index 22b5bf6..553b873 100644 --- a/build-rootfs.sh +++ b/build-rootfs.sh @@ -218,7 +218,7 @@ chroot "$ROOTFS" rc-update add procfs boot || true chroot "$ROOTFS" rc-update add sysfs boot || true echo "[+] Installing Linux" -chroot "$ROOTFS" apt install linux-image-amd64 +chroot "$ROOTFS" apt install linux-image-amd64 -y echo "[+] Cleaning"