From 8aebfc26c463ebcbc4c21eb4fcbf41b218e681fe Mon Sep 17 00:00:00 2001 From: Breadway Date: Sun, 14 Jun 2026 13:15:27 +0800 Subject: [PATCH] Add squashfs-tools so Calamares can unpack the rootfs Calamares' unpackfs module shells out to unsquashfs to extract airootfs.sfs onto the target. squashfs-tools wasn't in the live package list, so installs failed at the Finish step with "Failed to find unsquashfs ... Bad unpackfs configuration". Add it. --- iso/packages.x86_64 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/iso/packages.x86_64 b/iso/packages.x86_64 index ac35b01..c89e69e 100644 --- a/iso/packages.x86_64 +++ b/iso/packages.x86_64 @@ -11,6 +11,9 @@ efibootmgr btrfs-progs dosfstools mtools +# squashfs-tools: provides unsquashfs, which Calamares' unpackfs module uses +# to extract airootfs.sfs onto the target during install. +squashfs-tools # Live-ISO boot (archiso bootmodes: bios.syslinux + uefi.systemd-boot) # mkinitcpio-archiso provides the initramfs hooks that find and mount # airootfs.sfs and switch root into it — without it the live ISO drops