virtualization - Running qemu on ARM with KVM acceleration -
i'm trying emulate arm vm on arm host, cubieboard2 embedded board, means of qemu
. i've compiled qemu
source code , enabled kvm
. problem launching qemu-system-arm
follows:
$ /usr/local/bin/qemu-system-arm -m accel=kvm -cpu host -kernel vmlinuz-3.2.0-4-vexpress -initrd initrd.img-3.2.0-4-vexpress -sd debian_wheezy-_armhf_standard.qcow2 -append "console=ttyama0 root=/dev/mmcblk0p2" -nographic
i have error:
qemu-system-arm: -m accel=kvm: unsupported machine type use -machine list supported machines!
what wrong in command i've typed. how enable kvm
?
-m takes machine name (eg "vexpress-a15" or "virt"), not set of suboption=value settings. want -machine suboption=value,... that.
("-m name" shortcut "-machine type=name".)
you need specify machine name, either via -machine type=name or -m name, otherwise qemu complain didn't specify one.
Comments
Post a Comment