forked from josch/mmdebstrap
run_qemu.sh: only add -enable-kvm if /dev/kvm exists
This commit is contained in:
parent
0cc9e3b44a
commit
f25dc399c2
1 changed files with 5 additions and 1 deletions
|
@ -8,7 +8,11 @@ tmpdir="$(mktemp -d)"
|
||||||
# the path to debian-unstable.qcow must be absolute or otherwise qemu will
|
# the path to debian-unstable.qcow must be absolute or otherwise qemu will
|
||||||
# look for the path relative to debian-unstable-overlay.qcow
|
# look for the path relative to debian-unstable-overlay.qcow
|
||||||
qemu-img create -f qcow2 -b "$(realpath $cachedir)/debian-unstable.qcow" "$tmpdir/debian-unstable-overlay.qcow"
|
qemu-img create -f qcow2 -b "$(realpath $cachedir)/debian-unstable.qcow" "$tmpdir/debian-unstable-overlay.qcow"
|
||||||
qemu-system-x86_64 -enable-kvm -m 512M -nographic \
|
KVM=
|
||||||
|
if [ -e /dev/kvm ]; then
|
||||||
|
KVM="-enable-kvm"
|
||||||
|
fi
|
||||||
|
qemu-system-x86_64 $KVM -m 512M -nographic \
|
||||||
-monitor unix:/tmp/monitor,server,nowait \
|
-monitor unix:/tmp/monitor,server,nowait \
|
||||||
-serial unix:/tmp/ttyS0,server,nowait \
|
-serial unix:/tmp/ttyS0,server,nowait \
|
||||||
-serial unix:/tmp/ttyS1,server,nowait \
|
-serial unix:/tmp/ttyS1,server,nowait \
|
||||||
|
|
Loading…
Reference in a new issue