From patchwork Tue Apr 23 12:11:38 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Jackson X-Patchwork-Id: 10912849 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 956721390 for ; Tue, 23 Apr 2019 12:13:23 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 86F9028644 for ; Tue, 23 Apr 2019 12:13:23 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 7AE3C28657; Tue, 23 Apr 2019 12:13:23 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-5.2 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_MED autolearn=ham version=3.3.1 Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id 23D3A28644 for ; Tue, 23 Apr 2019 12:13:22 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hIuHC-0006OF-O3; Tue, 23 Apr 2019 12:11:54 +0000 Received: from all-amaz-eas1.inumbo.com ([34.197.232.57] helo=us1-amaz-eas2.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1hIuHA-0006O5-KX for xen-devel@lists.xenproject.org; Tue, 23 Apr 2019 12:11:52 +0000 X-Inumbo-ID: f8a0b00e-65c0-11e9-a14f-8f2a60f58afb Received: from SMTP03.CITRIX.COM (unknown [162.221.156.55]) by us1-amaz-eas2.inumbo.com (Halon) with ESMTPS id f8a0b00e-65c0-11e9-a14f-8f2a60f58afb; Tue, 23 Apr 2019 12:11:50 +0000 (UTC) X-IronPort-AV: E=Sophos;i="5.60,385,1549929600"; d="scan'208";a="84180793" From: Ian Jackson To: Date: Tue, 23 Apr 2019 13:11:38 +0100 Message-ID: <20190423121139.25996-3-ian.jackson@eu.citrix.com> X-Mailer: git-send-email 2.11.0 In-Reply-To: <20190423121139.25996-1-ian.jackson@eu.citrix.com> References: <20190423121139.25996-1-ian.jackson@eu.citrix.com> MIME-Version: 1.0 Subject: [Xen-devel] [OSSTEST PATCH 2/3] sg-run-job, ts-host-install: New --build option X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Ian Jackson Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" X-Virus-Scanned: ClamAV using ClamSMTP Used to specify that the host will be used for building. Currently has no effect. Signed-off-by: Ian Jackson --- sg-run-job | 2 +- ts-host-install | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/sg-run-job b/sg-run-job index 56b6384a..7c58d4ba 100755 --- a/sg-run-job +++ b/sg-run-job @@ -734,7 +734,7 @@ proc allocate-build-host {ostype} { } proc prepare-build-host-linux {} { global jobinfo - run-ts broken host-install(*) ts-host-install-twice + run-ts broken host-install(*) ts-host-install-twice + --build run-ts . host-build-prep ts-xen-build-prep } diff --git a/ts-host-install b/ts-host-install index 4213c3a2..7094559f 100755 --- a/ts-host-install +++ b/ts-host-install @@ -41,6 +41,7 @@ while (@ARGV and $ARGV[0] =~ m/^-/) { $poweron_test_only= 1; } elsif (m/^--rescue$/) { $xopts{RescueMode}= 1; + } elsif (m/^--build$/) { } else { die "$_ $!"; }