mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-13 22:28:27 +00:00
Merge lp:~daniel-thewatkins/livecd-rootfs/minimized-skips
This commit is contained in:
commit
46fc8e3baf
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
|
||||
|
||||
* 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…
x
Reference in New Issue
Block a user