From 6e25a58c5671374c256097cbaf63a8cd0c8e85e9 Mon Sep 17 00:00:00 2001 From: "michael.hudson@canonical.com" Date: Mon, 2 Mar 2026 10:50:15 +1300 Subject: [PATCH] make ubuntu-test-iso project use KERNEL_FLAVOURS to exercise more machinery --- live-build/auto/config | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/live-build/auto/config b/live-build/auto/config index 06849a04..9d56312c 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -1195,16 +1195,14 @@ case $PROJECT in ubuntu-test-iso) OPTS="${OPTS:+$OPTS }--bootstrap-flavour=minimal" - OPTS="${OPTS:+$OPTS }--linux-packages=none --initramfs=none" - KERNEL_FLAVOURS=none + KERNEL_FLAVOURS=virtual BINARY_REMOVE_LINUX=false MAKE_ISO=yes POOL_SEED_NAME= SQUASHFS_COMP=lz4 PASSES_TO_LAYERS=true - add_package base casper - add_package base.generic linux-virtual - LIVE_PASSES="base.generic" + add_package base linux-$KERNEL_FLAVOURS + add_package base.live casper case $ARCH in amd64) ;; *) echo "ubuntu-test-iso only supports amd64"; exit 1 ;;