mirror of
https://github.com/linuxkit/linuxkit.git
synced 2026-04-11 12:31:34 +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."
|