mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-15 15:18:26 +00:00
17 lines
392 B
Plaintext
17 lines
392 B
Plaintext
|
#!/bin/bash -ex
|
||
|
|
||
|
apt-get install -qqy qemu-utils
|
||
|
|
||
|
convert_image() {
|
||
|
src="$1"
|
||
|
destination="$2"
|
||
|
qemu-img convert -c -O qcow2 -o compat=0.10 "$src" "$destination"
|
||
|
qemu-img info "$destination"
|
||
|
}
|
||
|
|
||
|
convert_image binary/boot/disk.ext4 livecd.ubuntu-cpc.disk1.img
|
||
|
|
||
|
if [ -f binary/boot/disk-uefi.ext4 ]; then
|
||
|
convert_image binary/boot/disk-uefi.ext4 livecd.ubuntu-cpc.uefi1.img
|
||
|
fi
|