From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from giant.haxx.se (giant.haxx.se [80.67.6.50]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 11F92E011ED for ; Thu, 20 Dec 2012 07:33:31 -0800 (PST) Received: from giant.haxx.se (localhost.localdomain [127.0.0.1]) by giant.haxx.se (8.14.4/8.14.4/Debian-2) with ESMTP id qBKFXRFd016128 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Thu, 20 Dec 2012 16:33:27 +0100 Received: (from bjst@localhost) by giant.haxx.se (8.14.4/8.14.4/Submit) id qBKFXRtb016124 for yocto@yoctoproject.org; Thu, 20 Dec 2012 16:33:27 +0100 Date: Thu, 20 Dec 2012 16:33:27 +0100 From: =?iso-8859-1?Q?Bj=F6rn?= Stenberg To: yocto@yoctoproject.org Message-ID: <20121220153327.GB6389@giant> MIME-Version: 1.0 User-Agent: Mutt/1.5.21 (2010-09-15) Subject: [PATCH] Fix typo in kvm capability detection in runqemu X-BeenThere: yocto@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Discussion of all things Yocto List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Dec 2012 15:33:33 -0000 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit Signed-off-by: Björn Stenberg --- diff --git a/scripts/runqemu b/scripts/runqemu index fb7ac56..fc7d749 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 ;; *) -- Björn