From patchwork Mon Apr 11 11:37:52 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?b?THVrw6HFoSBEb2t0b3I=?= X-Patchwork-Id: 8800251 Return-Path: X-Original-To: patchwork-kvm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 0094E9FBEA for ; Mon, 11 Apr 2016 11:38:23 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id A1578200E8 for ; Mon, 11 Apr 2016 11:38:21 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B974E20270 for ; Mon, 11 Apr 2016 11:38:20 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754599AbcDKLiN (ORCPT ); Mon, 11 Apr 2016 07:38:13 -0400 Received: from mx1.redhat.com ([209.132.183.28]:38182 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754432AbcDKLiL (ORCPT ); Mon, 11 Apr 2016 07:38:11 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 52BF87F344 for ; Mon, 11 Apr 2016 11:38:06 +0000 (UTC) Received: from w541.redhat.com (vpn1-6-24.ams2.redhat.com [10.36.6.24]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u3BBc0Y7003791; Mon, 11 Apr 2016 07:38:04 -0400 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Doktor?= To: ldoktor@redhat.com, kvm@vger.kernel.org, drjones@redhat.com, pbonzini@redhat.com, lvivier@redhat.com Subject: [PATCH 1/2] scripts: Handle ppc64le machine name in mkstandalone Date: Mon, 11 Apr 2016 13:37:52 +0200 Message-Id: <1460374673-12492-2-git-send-email-ldoktor@redhat.com> In-Reply-To: <1460374673-12492-1-git-send-email-ldoktor@redhat.com> References: <1460374673-12492-1-git-send-email-ldoktor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Spam-Status: No, score=-7.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The query for machine type in `mkstandalone` is missing the `ppc64le` fixture. This patch uses the version from `configure` which should contain all fixtures. Signed-off-by: Lukáš Doktor Reviewed-by: Andrew Jones --- scripts/mkstandalone.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 () echo "#!/bin/bash" echo "export STANDALONE=yes" - echo "export HOST=\$(uname -m | sed -e s/i.86/i386/ | sed -e 's/arm.*/arm/')" + echo "export HOST=\$(uname -m | sed -e 's/i.86/i386/;s/arm.*/arm/;s/ppc64.*/ppc64/')" echo "export PRETTY_PRINT_STACKS=no" config_export ARCH