From 8af855c26d24429e03c15af47f39a09474c92c8c Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Fri, 14 Nov 2014 08:26:23 +0100 Subject: [PATCH] * live-build/auto/config: - system-image: do not install ubuntu-minimal - system-image: install KERNEL_FLAVOURS=virtual on i386/amd64 - system-image: use "--linux-packages=linux-image" --- debian/changelog | 9 +++++++++ live-build/auto/config | 13 +++++++++---- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index 1e2d89b9..070366cb 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +livecd-rootfs (2.267) UNRELEASED; urgency=low + + * live-build/auto/config: + - system-image: do not install ubuntu-minimal + - system-image: install KERNEL_FLAVOURS=virtual on i386/amd64 + - system-image: use "--linux-packages=linux-image" + + -- Michael Vogt Fri, 14 Nov 2014 08:25:14 +0100 + livecd-rootfs (2.266) vivid; urgency=medium * Move the shorts click package to the custom tarball. LP: #1386177. diff --git a/live-build/auto/config b/live-build/auto/config index 25c5a686..a5911910 100755 --- a/live-build/auto/config +++ b/live-build/auto/config @@ -335,30 +335,35 @@ case $PROJECT in ;; ubuntu-core) - add_task install minimal # mvo: This is for cron.daily-preinstalled # CDIMAGE_PREINSTALLED is not passed from build.py # and PREINSTALLED means something different. So # we use SUBPROJECT to pass on the information if [ "$SUBPROJECT" = "system-image" ]; then OPTS="${OPTS:+$OPTS }--apt-recommends false" + + # no minimal as we want to be really minimal + #add_task install minimal add_task install ubuntu-core # some workarounds because the seeds are not quite # corrent at the moment add_package install dbus add_package install libpam-systemd + add_package install isc-dhcp-client + add_package install resolvconf + case $ARCH in i386|amd64) add_package install grub-pc + KERNEL_FLAVOURS=virtual ;; armhf) add_package install flash-kernel u-boot-tools + KERNEL_FLAVOURS=generic ;; esac - - # generic kernel on amd64/arm for now - KERNEL_FLAVOURS=generic + OPTS="${OPTS:+$OPTS }--linux-packages=linux-image" # contains the framework definition add_package install ubuntu-core-libs