From 2cd1131f72a426b88fedebaa6ce550800c05a952 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Pe=C4=8Dovnik?= Date: Sat, 26 Mar 2022 14:21:07 +0100 Subject: [PATCH] Bump rootfs cache revision to force recreation (#3576) We have buggy caches due to varios bugs that has been around but were fixed this week --- lib/configuration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/configuration.sh b/lib/configuration.sh index d0c56729a3..d4281b00a5 100644 --- a/lib/configuration.sh +++ b/lib/configuration.sh @@ -29,7 +29,7 @@ HOSTRELEASE=$(cat /etc/os-release | grep VERSION_CODENAME | cut -d"=" -f2) [[ -z $EXIT_PATCHING_ERROR ]] && EXIT_PATCHING_ERROR="" # exit patching if failed [[ -z $HOST ]] && HOST="$BOARD" # set hostname to the board cd "${SRC}" || exit -[[ -z "${ROOTFSCACHE_VERSION}" ]] && ROOTFSCACHE_VERSION=15 +[[ -z "${ROOTFSCACHE_VERSION}" ]] && ROOTFSCACHE_VERSION=16 [[ -z "${CHROOT_CACHE_VERSION}" ]] && CHROOT_CACHE_VERSION=7 BUILD_REPOSITORY_URL=$(improved_git remote get-url $(improved_git remote 2>/dev/null | grep origin) 2>/dev/null) BUILD_REPOSITORY_COMMIT=$(improved_git describe --match=d_e_a_d_b_e_e_f --always --dirty 2>/dev/null)