From 8e9a90bfc3a656bcfd1c2ef5cf553e43e28500a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B8rn=20Lindahl?= Date: Sat, 31 Jan 2026 10:22:13 +0100 Subject: [PATCH] Install squashfs-tools, wget, and curl in chroot for initramfs hooks The initramfs hooks copy binaries from the chroot environment, so these tools must be installed there. Without squashfs-tools, unsquashfs is missing from the initramfs and the netboot script cannot extract the root filesystem. --- build-image.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-image.sh b/build-image.sh index c42a79e..27ffdd7 100755 --- a/build-image.sh +++ b/build-image.sh @@ -104,7 +104,10 @@ apt-get install -y \ vim \ less \ rsync \ - git + git \ + squashfs-tools \ + wget \ + curl # Clean up apt-get clean