From debe76299dc1521ae8964dfbf60bf7941b5d29ee Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Mon, 8 Jun 2015 13:15:05 +0200 Subject: git-update: Increase maximum blob size to 250kB Large blobs are needed in some packages, such as customized Linux kernels including kernel configurations. Signed-off-by: Lukas Fleischer --- git-interface/git-update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'git-interface') diff --git a/git-interface/git-update.py b/git-interface/git-update.py index 0a4130e..b2a00d6 100755 --- a/git-interface/git-update.py +++ b/git-interface/git-update.py @@ -191,8 +191,8 @@ for commit in walker: die_commit("missing .SRCINFO", commit.id) for treeobj in commit.tree: - if repo[treeobj.id].size > 100000: - die_commit("maximum blob size (100kB) exceeded", commit.id) + if repo[treeobj.id].size > 250000: + die_commit("maximum blob size (250kB) exceeded", commit.id) srcinfo_raw = repo[commit.tree['.SRCINFO'].id].data.decode() srcinfo_raw = srcinfo_raw.split('\n') -- cgit v1.2.3-54-g00ecf