mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-05-11 19:01:31 +00:00
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
8044452929
commit
4e83114045
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,3 +1,10 @@
|
|||||||
|
livecd-rootfs (2.408.28) xenial; 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 12:42:25 -0400
|
||||||
|
|
||||||
livecd-rootfs (2.408.27) xenial; urgency=medium
|
livecd-rootfs (2.408.27) xenial; urgency=medium
|
||||||
|
|
||||||
* Don't ask for password and GECOS while creating vagrant user
|
* Don't ask for password and GECOS while creating vagrant user
|
||||||
|
@ -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
|
||||||
|
|
||||||
extension="disk1.vmdk"
|
extension="disk1.vmdk"
|
||||||
|
|
||||||
case $ARCH in
|
case $ARCH in
|
||||||
|
@ -9,6 +9,14 @@
|
|||||||
#
|
#
|
||||||
# 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
|
||||||
|
|
||||||
cur_d=${PWD}
|
cur_d=${PWD}
|
||||||
my_d=$(dirname $(readlink -f ${0}))
|
my_d=$(dirname $(readlink -f ${0}))
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user