From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42514) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WQl6p-0004KG-PB for qemu-devel@nongnu.org; Thu, 20 Mar 2014 18:06:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WQl6j-0000P8-PD for qemu-devel@nongnu.org; Thu, 20 Mar 2014 18:06:43 -0400 Received: from mx1.redhat.com ([209.132.183.28]:59215) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WQl6j-0000P4-Hl for qemu-devel@nongnu.org; Thu, 20 Mar 2014 18:06:37 -0400 Message-ID: <1395353214.21800.6.camel@localhost.localdomain> From: Marcel Apfelbaum Date: Fri, 21 Mar 2014 00:06:54 +0200 In-Reply-To: <532B645B.5020507@redhat.com> References: <1395350099-14664-1-git-send-email-marcel.a@redhat.com> <532B645B.5020507@redhat.com> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH for-2.0 V3] tests/acpi-test: do not run iasl on big endian machines List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: peter.maydell@linaro.org, mst@redhat.com, aik@ozlabs.ru, mjt@tls.msk.ru, qemu-devel@nongnu.org, stefanha@redhat.com, afaerber@suse.de, rth@twiddle.net On Thu, 2014-03-20 at 22:57 +0100, Paolo Bonzini wrote: > Il 20/03/2014 22:14, Marcel Apfelbaum ha scritto: > > +# All known versions of iasl on BE machines are broken. > > +# TODO: add detection code once a non-broken version makes an appearance. > > +if ($iasl -h > /dev/null 2>&1) && > > + (lscpu | grep "Byte Order" | grep --quiet "Little Endian" ); then > > lscpu is not portable. I am open to suggestions... I'll try to come up with something else. Thanks, Marcel > > Paolo