Import patches-unapplied version 2.512 to ubuntu/bionic-proposed

Imported using git-ubuntu import.

Changelog parent: f276860114

New changelog entries:
  * ubuntu-cpc: When performing a minimized build, don't generate artifacts
    that won't boot with the linux-kvm kernel (LP: #1757223).
impish
Daniel Watkins 7 years ago committed by usd-importer
parent f276860114
commit 2be32c140c

7
debian/changelog vendored

@ -1,3 +1,10 @@
livecd-rootfs (2.512) bionic; urgency=medium
* ubuntu-cpc: When performing a minimized build, don't generate artifacts
that won't boot with the linux-kvm kernel (LP: #1757223).
-- Daniel Watkins <daniel.watkins@canonical.com> Tue, 20 Mar 2018 13:42:50 -0400
livecd-rootfs (2.511) bionic; urgency=medium
* Whitelist preserving "unowned" /var/log/journal. Maybe systemd package

@ -3,6 +3,15 @@
#
# Generate VMDK files
case ${SUBPROJECT:-} in
minimized)
echo "Skipping minimized $0 build as images won't boot with linux-kvm"
exit 0
;;
*)
;;
esac
case $ARCH in
amd64) ;;
*) echo "VMDK images are not supported for $ARCH yet.";

@ -9,6 +9,15 @@
#
# For this step, we re-use the VMDK's made in 040-vmdk-image.binary
case ${SUBPROJECT:-} in
minimized)
echo "Skipping minimized $0 build as images won't boot with linux-kvm"
exit 0
;;
*)
;;
esac
# Switch on $ARCH to determine which ID and description to use in the produced
# OVF. We have fancy Ubuntu-specific IDs in the OVF specification, we might as

@ -15,6 +15,15 @@
# some packages in it, convert it to a vmdk, and then assemble the vagrant
# box.
case ${SUBPROJECT:-} in
minimized)
echo "Skipping minimized $0 build as images won't boot with linux-kvm"
exit 0
;;
*)
;;
esac
case $IMAGE_TARGETS in
""|*vagrant*)
;;

Loading…
Cancel
Save