diff options
author | Björn Stenberg <bjorn@haxx.se> | 2012-12-20 16:33:27 +0100 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2012-12-25 14:00:19 -0800 |
commit | 7db394c4021f57b6bfc5cbad3fb2bd4903527758 (patch) | |
tree | 83d4813c49381398b1e3876b30603417327137cf /scripts/runqemu | |
parent | 807aa2079c5884b6bd1afb705c31090c87d14dc5 (diff) | |
download | openembedded-core-contrib-7db394c4021f57b6bfc5cbad3fb2bd4903527758.tar.gz |
Fix typo in kvm capability detection in runqemu
Signed-off-by: Björn Stenberg <bjst@enea.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'scripts/runqemu')
-rwxr-xr-x | scripts/runqemu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/runqemu b/scripts/runqemu index 190e3b41de8..b8148ef55e2 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -162,7 +162,7 @@ while true; do ;; "kvm") KVM_ENABLED="yes" - KVM_CAPABLE=`grep -q 'vmx\|smx' /proc/cpuinfo && echo 1` + KVM_CAPABLE=`grep -q 'vmx\|svm' /proc/cpuinfo && echo 1` ;; "") break ;; *) |