mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-04-28 19:41:28 +00:00
Import patches-unapplied version 2.512 to ubuntu/bionic-proposed
Imported using git-ubuntu import. Changelog parent: f27686011453985e8a1dca45c42fea9b297b56e6 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).
This commit is contained in:
parent
f276860114
commit
2be32c140c
7
debian/changelog
vendored
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
|
livecd-rootfs (2.511) bionic; urgency=medium
|
||||||
|
|
||||||
* Whitelist preserving "unowned" /var/log/journal. Maybe systemd package
|
* Whitelist preserving "unowned" /var/log/journal. Maybe systemd package
|
||||||
|
@ -3,6 +3,15 @@
|
|||||||
#
|
#
|
||||||
# Generate VMDK files
|
# 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
|
case $ARCH in
|
||||||
amd64) ;;
|
amd64) ;;
|
||||||
*) echo "VMDK images are not supported for $ARCH yet.";
|
*) 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
|
# 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
|
# 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
|
# 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
|
# some packages in it, convert it to a vmdk, and then assemble the vagrant
|
||||||
# box.
|
# 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
|
case $IMAGE_TARGETS in
|
||||||
""|*vagrant*)
|
""|*vagrant*)
|
||||||
;;
|
;;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user