From f4d2a993b3eb872f2b20a55fa69105c878788454 Mon Sep 17 00:00:00 2001 From: Steve Langasek Date: Sun, 9 Aug 2015 22:54:24 -0700 Subject: [PATCH] Import patches-unapplied version 2.335 to ubuntu/wily-proposed Imported using git-ubuntu import. Changelog parent: 7782a874481d53378f1ff3dea562504decd67a7b New changelog entries: * Attempt to build Ubuntu image using metapackages instead of tasks; this is necessary in order to build a test image out of wily-proposed for the g++5 transition, but may be reverted later if this doesn't turn out to be maintainable. (Code taken from the trusty HWE LTS branch of livecd-rootfs.) --- debian/changelog | 10 ++++++++++ live-build/auto/config | 9 ++++++--- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 93f81a3e..c4aea5b3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +livecd-rootfs (2.335) wily; urgency=medium + + * Attempt to build Ubuntu image using metapackages instead of tasks; this + is necessary in order to build a test image out of wily-proposed for the + g++5 transition, but may be reverted later if this doesn't turn out to + be maintainable. (Code taken from the trusty HWE LTS branch of + livecd-rootfs.) + + -- Steve Langasek Sun, 09 Aug 2015 22:54:24 -0700 + livecd-rootfs (2.334) wily; urgency=medium * add dnsmasq user to snappy builds, needed by ubuntu-fan diff --git a/live-build/auto/config b/live-build/auto/config index 334fa275..1c9cc697 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -180,9 +180,12 @@ case $BINARYFORMAT in ;; esac +SIGNED_KERNEL_PACKAGE="linux-signed-generic" +UNITY_HWE_HINTS="unity-settings-daemon notify-osd libqt4-sql-sqlite unity gnome-terminal" + case $PROJECT in ubuntu|ubuntu-dvd) - add_task install minimal standard + add_package install ubuntu-minimal ubuntu-standard case "$ARCH+$SUBARCH" in armhf+omap4) # Don't use the task as this drags in the regular X @@ -194,12 +197,12 @@ case $PROJECT in xserver-xorg-input-evdev-omap-revert ;; *) - add_task install ubuntu-desktop + add_package install ubuntu-desktop $UNITY_HWE_HINTS ;; esac LIVE_TASK='ubuntu-live' case $ARCH in - amd64) add_package live linux-signed-generic ;; + amd64) add_package live $SIGNED_KERNEL_PACKAGE ;; esac ;;