From: Cedric CHEDALEUX Date: Mon, 17 Feb 2025 09:44:36 +0000 (+0100) Subject: scripts/feeds: shallow clone submodules X-Git-Tag: v23.05.6~74 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F18168%2Fhead;p=thirdparty%2Fopenwrt.git scripts/feeds: shallow clone submodules When a feed has submodules, all its submodules are fully cloned whereas the feed itself is shallowed. Let's be consistent and perform shallow clones as well for the submodules. Signed-off-by: Cedric CHEDALEUX Link: https://github.com/openwrt/openwrt/pull/18003 Signed-off-by: Robert Marko (cherry picked from commit 9ec32cfb2733856a2ab4caee07d9b3297568381d) Link: https://github.com/openwrt/openwrt/pull/18168 Signed-off-by: Christian Marangi --- diff --git a/scripts/feeds b/scripts/feeds index 3df947c9c70..f0dea6d040a 100755 --- a/scripts/feeds +++ b/scripts/feeds @@ -160,7 +160,7 @@ my %update_method = ( 'init_commit' => "git clone --depth 1 '%s' '%s' && cd '%s' && git fetch --depth=1 origin '%s' && git -c advice.detachedHead=false checkout '%s' && cd -", 'update' => "git pull --ff-only", 'update_force' => "git pull --ff-only || (git reset --hard HEAD; git pull --ff-only; exit 1)", - 'post_update' => "git submodule update --init --recursive", + 'post_update' => "git submodule update --init --recursive --depth 1", 'controldir' => ".git", 'revision' => "git rev-parse --short HEAD | tr -d '\n'"}, 'src-git-full' => {