From bdd7d035e29e9fba3c981c9c0b710e0eeb442738 Mon Sep 17 00:00:00 2001 From: Michael Hudson-Doyle Date: Fri, 20 Dec 2024 16:56:17 +1300 Subject: [PATCH] Stop producing a rootfs tarball for the ubuntu-mini-iso builds. --- debian/changelog | 6 ++++++ live-build/auto/config | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index dac7eb28..5cedf010 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +livecd-rootfs (25.04.12) UNRELEASED; urgency=medium + + * Stop producing a rootfs tarball for the ubuntu-mini-iso builds. + + -- Michael Hudson-Doyle Wed, 05 Feb 2025 11:20:05 +1300 + livecd-rootfs (25.04.11) plucky; urgency=medium [ Heinrich Schuchardt ] diff --git a/live-build/auto/config b/live-build/auto/config index 3e4e976c..bf8c314a 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -444,17 +444,19 @@ case $IMAGEFORMAT in PREINSTALLED=true ;; plain) + fs=$IMAGEFORMAT case $PROJECT:${SUBPROJECT:-} in ubuntu-server:live|ubuntu-core-installer:*) - touch config/universe-enabled + touch config/universe-enabled ;; ubuntu-mini-iso:) + fs=none ;; *) PREINSTALLED=true ;; esac - OPTS="${OPTS:+$OPTS }--initramfs none --chroot-filesystem $IMAGEFORMAT" + OPTS="${OPTS:+$OPTS }--initramfs none --chroot-filesystem $fs" ;; ubuntu-image)