From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by mx.groups.io with SMTP id smtpd.web12.28072.1605017927354274933 for ; Tue, 10 Nov 2020 06:18:47 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@redhat.com header.s=mimecast20190719 header.b=OqZrqWH0; spf=pass (domain: redhat.com, ip: 63.128.21.124, mailfrom: lersek@redhat.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1605017926; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=As7kYw1nD4ae63fQyZtCDLZZ5RcnGVI2gaY3xy6quO8=; b=OqZrqWH0Ps8SGsnTn4mdKMluBnbBrbYF4sw0ss4KxKOB8iJic7I1iNpyLf1ffhGTyTBHNh M7Y6WQXdtOJF/HCyyILzIuf168RdRwGAoYuVJc+nyoQ7M7MiMERAMAbjO2kzTuUlV4vjUg +MHhT8e4GBwSjZV3NrQmRfO5k7z0Uhw= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-536-AtCVYgvEOyCjwUnUhzCn0A-1; Tue, 10 Nov 2020 09:18:39 -0500 X-MC-Unique: AtCVYgvEOyCjwUnUhzCn0A-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id CDD68CE642; Tue, 10 Nov 2020 14:18:37 +0000 (UTC) Received: from lacos-laptop-7.usersys.redhat.com (ovpn-113-70.ams2.redhat.com [10.36.113.70]) by smtp.corp.redhat.com (Postfix) with ESMTP id 4DF571002C1A; Tue, 10 Nov 2020 14:18:35 +0000 (UTC) Subject: Re: [edk2-devel] [PATCH 1/1] BaseTools: add edk2-test repo to SetupGit.py To: devel@edk2.groups.io, xypron.glpk@gmx.de, Bob Feng , Liming Gao Cc: Yuwei Chen , "Leif Lindholm (Nuvia address)" References: <20201109231608.18925-1-xypron.glpk@gmx.de> From: "Laszlo Ersek" Message-ID: <40c23e06-8b9c-1554-cda8-f1323afa332b@redhat.com> Date: Tue, 10 Nov 2020 15:18:35 +0100 MIME-Version: 1.0 In-Reply-To: <20201109231608.18925-1-xypron.glpk@gmx.de> X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=lersek@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit CC Leif Thanks Laszlo On 11/10/20 00:16, Heinrich Schuchardt wrote: > REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3066 > > The SctPkg is managed in repository > https://github.com/tianocore/edk2-test. > > Make SetupGit.py usable for this repository. > > Signed-off-by: Heinrich Schuchardt > --- > BaseTools/Scripts/SetupGit.py | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/BaseTools/Scripts/SetupGit.py b/BaseTools/Scripts/SetupGit.py > index 4416111ac0a5..91814199bfb9 100644 > --- a/BaseTools/Scripts/SetupGit.py > +++ b/BaseTools/Scripts/SetupGit.py > @@ -46,7 +46,10 @@ UPSTREAMS = [ > 'list': 'devel@edk2.groups.io', 'prefix': 'edk2-platforms'}, > {'name': 'edk2-non-osi', > 'repo': 'https://github.com/tianocore/edk2-non-osi.git', > - 'list': 'devel@edk2.groups.io', 'prefix': 'edk2-non-osi'} > + 'list': 'devel@edk2.groups.io', 'prefix': 'edk2-non-osi'}, > + {'name': 'edk2-test', > + 'repo': 'https://github.com/tianocore/edk2-test.git', > + 'list': 'devel@edk2.groups.io', 'prefix': 'edk2-test'} > ] > > # The minimum version required for all of the below options to work >