From 2e6c9d64885c8801d3ba669322dd197733fa2d88 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Tue, 23 Nov 2021 10:30:45 -0700 Subject: [PATCH] payloads/U-Boot: Do a shallow clone We don't need all the git history. Speed up the build by doing a shallow clone. Signed-off-by: Simon Glass Change-Id: If31c9dd158aa23f242e4fd145449ef7502fb1ab1 Reviewed-on: https://review.coreboot.org/c/coreboot/+/59602 Tested-by: build bot (Jenkins) Reviewed-by: Arthur Heymans --- payloads/external/U-Boot/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/payloads/external/U-Boot/Makefile b/payloads/external/U-Boot/Makefile index 1d1d3324e3..90777a5b9e 100644 --- a/payloads/external/U-Boot/Makefile +++ b/payloads/external/U-Boot/Makefile @@ -26,7 +26,7 @@ all: build $(project_dir): echo " Cloning $(project_name) from Git" - git clone $(project_git_repo) $(project_dir) + git clone --depth 1 $(project_git_repo) $(project_dir) fetch: $(project_dir) ifeq ($(CONFIG_UBOOT_MASTER),y)