Stop producing a rootfs tarball for the ubuntu-mini-iso builds.

This commit is contained in:
Michael Hudson-Doyle 2024-12-20 16:56:17 +13:00
parent 47333c22a7
commit bdd7d035e2
2 changed files with 10 additions and 2 deletions

6
debian/changelog vendored
View File

@ -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 <michael.hudson@ubuntu.com> Wed, 05 Feb 2025 11:20:05 +1300
livecd-rootfs (25.04.11) plucky; urgency=medium
[ Heinrich Schuchardt ]

View File

@ -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)