mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-05 12:43:46 +00:00
8 lines
194 B
Bash
Executable File
8 lines
194 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
>&2 echo "Converting raw image file to VHD..."
|
|
qemu-img convert -f raw -O vpc -o subformat=fixed /tmp/mobylinux.img /tmp/mobylinux.vhd 1>&2
|
|
>&2 echo "Done converting to VHD."
|