From f3962422c87124a268926f4fdd3fb00f55517da6 Mon Sep 17 00:00:00 2001 From: Mikhail Chusavitin Date: Mon, 4 May 2026 14:03:41 +0300 Subject: [PATCH] Fix lb config option name for squashfs compression options --chroot-squashfs-options is not a valid lb_config option; the correct name is --chroot-squashfs-compression-options. Without this fix lb config aborts immediately, so the -no-xattrs flag (which prevents the "unable to read xattr id index table" boot failure) was never applied. Co-Authored-By: Claude Sonnet 4.6 --- iso/builder/auto/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iso/builder/auto/config b/iso/builder/auto/config index 3aba80f..55deeb7 100755 --- a/iso/builder/auto/config +++ b/iso/builder/auto/config @@ -42,5 +42,5 @@ lb config noauto \ --debootstrap-options "--include=ca-certificates" \ --apt-recommends false \ --chroot-squashfs-compression-type zstd \ - --chroot-squashfs-options "-no-xattrs" \ + --chroot-squashfs-compression-options "-no-xattrs" \ "${@}"