From e1e85f4250f5b88a405960e58655c3c9ac45c030 Mon Sep 17 00:00:00 2001 From: Celeste Liu Date: Mon, 10 Jul 2023 18:41:45 +0800 Subject: [PATCH] fix(mkimg): use blobless clone instead of shadow clone To make sure updating existed repo work Signed-off-by: Celeste Liu --- mkimg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mkimg b/mkimg index 0420563..53c838d 100755 --- a/mkimg +++ b/mkimg @@ -82,7 +82,7 @@ then git checkout v2023.04 popd else - git clone --depth 1 -b v2023.04 https://github.com/u-boot/u-boot.git + git clone --filter=blob:none -b v2023.04 https://github.com/u-boot/u-boot.git fi pushd u-boot @@ -101,7 +101,7 @@ then git checkout v2023.04 popd else - git clone --depth 1 -b v1.2 https://github.com/riscv-software-src/opensbi + git clone --filter=blob:none -b v1.2 https://github.com/riscv-software-src/opensbi fi pushd opensbi