Imported 2.772

No reason for CPC update specified.
This commit is contained in:
CloudBuilder 2022-07-29 04:38:25 +00:00
parent 5e412fc1c1
commit 7478fdfae8
2 changed files with 9 additions and 1 deletions

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
livecd-rootfs (2.772) kinetic; urgency=medium
* When converting images to qcow2 stop using the traditional image format
and switch to using the default image format which will include zero
clusters and allow efficient copy-on-read for sparse images.
-- Brian Murray <brian@ubuntu.com> Thu, 28 Jul 2022 14:04:45 -0700
livecd-rootfs (2.771) kinetic; urgency=medium
[ Steve Langasek ]

View File

@ -370,7 +370,7 @@ create_derivative() {
convert_to_qcow2() {
src="$1"
destination="$2"
qemu-img convert -c -O qcow2 -o compat=0.10 "$src" "$destination"
qemu-img convert -c -O qcow2 "$src" "$destination"
qemu-img info "$destination"
}