From mboxrd@z Thu Jan 1 00:00:00 1970 From: Paolo Bonzini Subject: Re: [PATCH 1/2] scripts: Handle ppc64le machine name in mkstandalone Date: Tue, 10 May 2016 14:36:53 +0200 Message-ID: <5731D5E5.7080104@redhat.com> References: <1460374673-12492-1-git-send-email-ldoktor@redhat.com> <1460374673-12492-2-git-send-email-ldoktor@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE To: =?UTF-8?B?THVrw6HFoSBEb2t0b3I=?= , kvm@vger.kernel.org, drjones@redhat.com, lvivier@redhat.com Return-path: Received: from mail-wm0-f67.google.com ([74.125.82.67]:34601 "EHLO mail-wm0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751404AbcEJMg4 (ORCPT ); Tue, 10 May 2016 08:36:56 -0400 Received: by mail-wm0-f67.google.com with SMTP id n129so2445835wmn.1 for ; Tue, 10 May 2016 05:36:55 -0700 (PDT) In-Reply-To: <1460374673-12492-2-git-send-email-ldoktor@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: On 11/04/2016 13:37, Luk=C3=A1=C5=A1 Doktor wrote: > The query for machine type in `mkstandalone` is missing the `ppc64le` > fixture. This patch uses the version from `configure` which should > contain all fixtures. >=20 > Signed-off-by: Luk=C3=A1=C5=A1 Doktor > --- > scripts/mkstandalone.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/scripts/mkstandalone.sh b/scripts/mkstandalone.sh > index ef15bc8..26094df 100755 > --- a/scripts/mkstandalone.sh > +++ b/scripts/mkstandalone.sh > @@ -40,7 +40,7 @@ generate_test () > =20 > echo "#!/bin/bash" > echo "export STANDALONE=3Dyes" > - echo "export HOST=3D\$(uname -m | sed -e s/i.86/i386/ | sed -e 's/a= rm.*/arm/')" > + echo "export HOST=3D\$(uname -m | sed -e 's/i.86/i386/;s/arm.*/arm/= ;s/ppc64.*/ppc64/')" > echo "export PRETTY_PRINT_STACKS=3Dno" > =20 > config_export ARCH >=20 Queued this one, thanks. Paolo