diff options
author | Björn Stenberg <bjorn@haxx.se> | 2012-12-20 16:33:27 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-14 15:17:16 +0000 |
commit | 81b1298a9163f9de0574fe8a1c9ae49ea67fe5ff (patch) | |
tree | b762b898503a2d22fcd099500e319892c4bbf7d9 /scripts/runqemu | |
parent | c9c0ef2131d8a848b8222a223a6296edf4b9737a (diff) | |
download | openembedded-core-81b1298a9163f9de0574fe8a1c9ae49ea67fe5ff.tar.gz openembedded-core-81b1298a9163f9de0574fe8a1c9ae49ea67fe5ff.tar.bz2 openembedded-core-81b1298a9163f9de0574fe8a1c9ae49ea67fe5ff.zip |
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 fb7ac56398..fc7d749944 100755 --- a/scripts/runqemu +++ b/scripts/runqemu @@ -155,7 +155,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 ;; *) |