diff options
author | Björn Stenberg <bjorn@haxx.se> | 2012-12-20 16:33:27 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-12-26 11:34:03 +0000 |
commit | 3c77b8c19a063e91bd35fc2c2467f3076b42328e (patch) | |
tree | d1541d1826e10022c82a2a2a3a8250f9ca4d8659 /scripts/runqemu | |
parent | abf0ad8102b15f8a0fabc740a70ce6f2c47a92c9 (diff) | |
download | poky-3c77b8c19a063e91bd35fc2c2467f3076b42328e.tar.gz |
Fix typo in kvm capability detection in runqemu
(From OE-Core rev: 7db394c4021f57b6bfc5cbad3fb2bd4903527758)
Signed-off-by: Björn Stenberg <bjst@enea.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
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 190e3b41de..b8148ef55e 100755 --- a/scripts/runqemu +++ b/scripts/runqemu | |||
@@ -162,7 +162,7 @@ while true; do | |||
162 | ;; | 162 | ;; |
163 | "kvm") | 163 | "kvm") |
164 | KVM_ENABLED="yes" | 164 | KVM_ENABLED="yes" |
165 | KVM_CAPABLE=`grep -q 'vmx\|smx' /proc/cpuinfo && echo 1` | 165 | KVM_CAPABLE=`grep -q 'vmx\|svm' /proc/cpuinfo && echo 1` |
166 | ;; | 166 | ;; |
167 | "") break ;; | 167 | "") break ;; |
168 | *) | 168 | *) |