diff options
author | Matt DeVillier <matt.devillier@gmail.com> | 2019-03-01 13:10:26 -0600 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-03-04 13:56:08 +0000 |
commit | ee69f73dbf1934db7a45088eb3ad1d8b110cbb92 (patch) | |
tree | ea0fe31e19fe7ad409f181ba30d06f5ced9983e6 | |
parent | 470861206100f8f1aab63fda5359c31b3583cd2b (diff) | |
download | coreboot-ee69f73dbf1934db7a45088eb3ad1d8b110cbb92.tar.xz |
payloads/tianocore: remove single branch checkout parameter
using '--single-branch' when cloning the tianocore repo
prevents the use of other branches/commits outside of the
checked-out coreboot_fb branch, so remove it.
Test: build with TIANOCORE_REVISION selected and revision
set to origin/master, verify checkout succeeds
Change-Id: If8c93aa87957ba2ff9ab7a58e84d2a25b48ec346
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/31686
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
-rw-r--r-- | payloads/external/tianocore/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/payloads/external/tianocore/Makefile b/payloads/external/tianocore/Makefile index 06e8b68f1d..2c7439ca7b 100644 --- a/payloads/external/tianocore/Makefile +++ b/payloads/external/tianocore/Makefile @@ -48,7 +48,7 @@ all: clean build $(project_dir): echo " Cloning $(project_name) from Git" - git clone --single-branch --branch $(project_git_branch) $(project_git_repo) $(project_dir); \ + git clone --branch $(project_git_branch) $(project_git_repo) $(project_dir); \ cd $(project_dir); \ git remote add upstream $(upstream_git_repo) |