From 8dc18bb33c773a2359ee0e07450121589fd09806 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 13 Jan 2017 08:01:05 +0100 Subject: rpi: use stable branch The github kernel repository is extremely big (over 1GB compressed) so use a branch to allow swallow cloning. Reducing download time a lot. We need to bump kernel version regulary now, when the branch is changing. --- mk/fetch.mk | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mk/fetch.mk') diff --git a/mk/fetch.mk b/mk/fetch.mk index cfc681d9c..3b2ff871d 100644 --- a/mk/fetch.mk +++ b/mk/fetch.mk @@ -69,14 +69,17 @@ $(1): case "$${PKG_GIT}" in \ tag|branch) \ git clone --depth 1 --branch $${PKG_VERSION} $${PKG_SITES} $${PKG_NAME}-$${PKG_VERSION} $(DL_TRACE); \ + if [ $$? -ne 0 ]; then echo "git clone error"; exit 1; fi; \ ;; \ hash) \ git clone $${PKG_SITES} $${PKG_NAME}-$${PKG_VERSION} $(DL_TRACE); \ + if [ $$? -ne 0 ]; then echo "git clone error"; exit 1; fi; \ (cd $${PKG_NAME}-$${PKG_VERSION}; git checkout $${PKG_VERSION}) $(DL_TRACE); \ ;; \ esac ;\ else \ git clone --depth 1 $${PKG_SITES} $${PKG_NAME}-$${PKG_VERSION} $(DL_TRACE); \ + if [ $$? -ne 0 ]; then echo "git clone error"; exit 1; fi; \ fi; \ tar cJf $${PKG_NAME}-$${PKG_VERSION}.tar.xz $${PKG_NAME}-$${PKG_VERSION}; \ touch $$$${filename}.nohash; \ -- cgit v1.2.3