From 03c991faefdcc78798225904faa3e0e47d458451 Mon Sep 17 00:00:00 2001 From: Mathieu Trudel-Lapierre Date: Fri, 28 Apr 2017 17:43:04 -0400 Subject: [PATCH 1/4] Setup kernel properly for ubuntu-server:live; we *do* want to build kernel-generic and initrd-generic for this image. (LP: #1682460) --- debian/changelog | 7 +++++++ live-build/auto/config | 6 ++++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index cb7d216e..e5a85a42 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +livecd-rootfs (2.441.1) UNRELEASED; urgency=medium + + * Setup kernel properly for ubuntu-server:live; we *do* want to build + kernel-generic and initrd-generic for this image. (LP: #1682460) + + -- Mathieu Trudel-Lapierre Thu, 13 Apr 2017 11:14:09 -0400 + livecd-rootfs (2.441) zesty; urgency=medium [ Balint Reczey ] diff --git a/live-build/auto/config b/live-build/auto/config index 77c33db4..198814e7 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -587,8 +587,10 @@ case $ARCH in ;; esac -case $PROJECT in - ubuntu-server|ubuntu-base|ubuntu-touch|ubuntu-touch-custom) +case $PROJECT:$SUBPROJECT in + ubuntu-server:live) + ;; + ubuntu-server:*|ubuntu-base:*|ubuntu-touch:*|ubuntu-touch-custom:*) OPTS="${OPTS:+$OPTS }--linux-packages=none --initramfs=none" KERNEL_FLAVOURS=none BINARY_REMOVE_LINUX=false From 608e738d38dae7359e8de728ffc6cd761bfb2e53 Mon Sep 17 00:00:00 2001 From: Mathieu Trudel-Lapierre Date: Fri, 28 Apr 2017 17:43:15 -0400 Subject: [PATCH 2/4] releasing package livecd-rootfs version 2.441.1 --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index e5a85a42..4e6e8de9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -livecd-rootfs (2.441.1) UNRELEASED; urgency=medium +livecd-rootfs (2.441.1) zesty; urgency=medium * Setup kernel properly for ubuntu-server:live; we *do* want to build kernel-generic and initrd-generic for this image. (LP: #1682460) From 2e21d6d6b17652caa50d48bf0e1ca1df5773e049 Mon Sep 17 00:00:00 2001 From: Mathieu Trudel-Lapierre Date: Fri, 28 Apr 2017 17:43:58 -0400 Subject: [PATCH 3/4] The ubuntu-server:live should use a casper-based initramfs to work correctly. (LP: #1682460) --- debian/changelog | 7 +++++++ live-build/auto/config | 5 ++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 4e6e8de9..706175aa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +livecd-rootfs (2.441.2) UNRELEASED; urgency=medium + + * The ubuntu-server:live should use a casper-based initramfs to work + correctly. (LP: #1682460) + + -- Mathieu Trudel-Lapierre Tue, 18 Apr 2017 09:56:31 -0400 + livecd-rootfs (2.441.1) zesty; urgency=medium * Setup kernel properly for ubuntu-server:live; we *do* want to build diff --git a/live-build/auto/config b/live-build/auto/config index 198814e7..2d2ade92 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -135,14 +135,17 @@ case $IMAGEFORMAT in ;; plain) - OPTS="${OPTS:+$OPTS }--initramfs none --chroot-filesystem $IMAGEFORMAT" + INITRAMFS_TYPE=none case $PROJECT:$SUBPROJECT in ubuntu-server:live) + add_package live lupin-casper + INITRAMFS_TYPE=auto ;; *) PREINSTALLED=true ;; esac + OPTS="${OPTS:+$OPTS }--initramfs $INITRAMFS_TYPE --chroot-filesystem $IMAGEFORMAT" ;; *) From 0da6b2307516911d4e9ef0922fc451fdfe3ecd9c Mon Sep 17 00:00:00 2001 From: Mathieu Trudel-Lapierre Date: Fri, 28 Apr 2017 17:44:10 -0400 Subject: [PATCH 4/4] releasing package livecd-rootfs version 2.441.2 --- debian/changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 706175aa..c439a56a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -livecd-rootfs (2.441.2) UNRELEASED; urgency=medium +livecd-rootfs (2.441.2) zesty; urgency=medium * The ubuntu-server:live should use a casper-based initramfs to work correctly. (LP: #1682460)