From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web12.14286.1635264121290287203 for ; Tue, 26 Oct 2021 09:02:01 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: pierre.gondois@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 78DFB1396; Tue, 26 Oct 2021 09:02:00 -0700 (PDT) Received: from e120189.arm.com (unknown [10.57.74.150]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 5CFD43F70D; Tue, 26 Oct 2021 09:01:58 -0700 (PDT) From: "PierreGondois" To: devel@edk2.groups.io, Ard Biesheuvel , Leif Lindholm , Sean Brogan , Bret Barkelew , Michael D Kinney , Liming Gao , Sami Mujawar Subject: [PATCH edk2-platforms v4 1/6] edk2-platforms: add edk2 repository as a submodule Date: Tue, 26 Oct 2021 17:01:36 +0100 Message-Id: <20211026160141.17400-2-Pierre.Gondois@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20211026160141.17400-1-Pierre.Gondois@arm.com> References: <20211026160141.17400-1-Pierre.Gondois@arm.com> From: Pierre Gondois Add the edk2 repository as a submodule: https://github.com/tianocore/edk2 Platforms in edk2-platforms often relies on modules available in the edk2 repository. In order to enable an upstream CI for edk2-platforms, adding edk2 as a submodule is a convenient way to advertise this dependency. Ref: https://bugzilla.tianocore.org/show_bug.cgi?id=3509 Change-Id: I215789d26e0e835a7350aa9b82798b926816231d Cc: Ard Biesheuvel Cc: Leif Lindholm Cc: Sean Brogan Cc: Bret Barkelew Cc: Michael D Kinney Cc: Liming Gao Cc: Sami Mujawar Signed-off-by: Sami Mujawar Signed-off-by: Pierre Gondois --- Notes: v2: - Use tianocore repository instead of personal repository [Pierre] .gitmodules | 3 +++ edk2 | 1 + 2 files changed, 4 insertions(+) create mode 160000 edk2 diff --git a/.gitmodules b/.gitmodules index 88aafaf15820..ed4b2d436cdb 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,6 @@ [submodule "Silicon/RISC-V/ProcessorPkg/Library/RiscVOpensbiLib/opensbi"] path = Silicon/RISC-V/ProcessorPkg/Library/RiscVOpensbiLib/opensbi url = https://github.com/riscv/opensbi +[submodule "edk2"] + path = edk2 + url = https://github.com/tianocore/edk2/ diff --git a/edk2 b/edk2 new file mode 160000 index 000000000000..2f6f3329add3 --- /dev/null +++ b/edk2 @@ -0,0 +1 @@ +Subproject commit 2f6f3329add328103cb0654b71d7b814dc0c9759 -- 2.17.1