summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJian J Wang <jian.j.wang@intel.com>2019-07-09 15:17:11 +0800
committerJian J Wang <jian.j.wang@intel.com>2019-07-10 09:33:01 +0800
commit369c177357312c3e66721f1ea6216ce06c90f569 (patch)
treea1b4ad124ca1d67774101e14a6e7bc8b4755c7d5
parent182903bd2e8631fcedbcbc9138dcec5ab063471b (diff)
Readme.md: Change way of cloning edk2 repo
BZ: https://bugzilla.tianocore.org/show_bug.cgi?id=1910 '--recursive' in cloning edk2 repo might cause failure on machine behind firewall. It's not actually necessary for edk2. This patch removed it from git command. A separate command $ git submodule update --init is added to retrieve repo specified via submodule. Cc: Leif Lindholm <leif.lindholm@linaro.org> Cc: Ard Biesheuvel <ard.biesheuvel@linaro.org> Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Liming Gao <liming.gao@intel.com> Signed-off-by: Jian J Wang <jian.j.wang@intel.com> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
-rw-r--r--Readme.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/Readme.md b/Readme.md
index e203795d..63e59f60 100644
--- a/Readme.md
+++ b/Readme.md
@@ -83,7 +83,8 @@ target-specific binutils. These are included with any prepackaged GCC toolchain
1. [edk2-non-osi](https://github.com/tianocore/edk2-non-osi) (if building
platforms that need it)
```
- $ git clone https://github.com/tianocore/edk2.git --recursive
+ $ git clone https://github.com/tianocore/edk2.git
+ $ git submodule update --init
...
$ git clone https://github.com/tianocore/edk2-platforms.git
...