From fb98faeab35797da31fea5c4ef12dd79ff9961a7 Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Mon, 2 Oct 2023 09:39:07 +0200 Subject: [PATCH] `rk35xx`+`rockchip-rk3588`/`legacy`: switch to `rk-5.10-rkr6` branch - also set `KERNEL_GIT_CACHE_TTL=120` to lower cache TTL from 1 hour to 2 minutes --- config/sources/families/rk35xx.conf | 5 +++-- config/sources/families/rockchip-rk3588.conf | 7 ++++--- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/config/sources/families/rk35xx.conf b/config/sources/families/rk35xx.conf index 61b53a3288..049b931bc6 100644 --- a/config/sources/families/rk35xx.conf +++ b/config/sources/families/rk35xx.conf @@ -20,8 +20,9 @@ case $BRANCH in UBOOT_USE_GCC='< 8.0' BOOTDIR='u-boot-rockchip64' KERNELSOURCE='https://github.com/armbian/linux-rockchip.git' - KERNELBRANCH='branch:rk-5.10-rkr5.1' - declare -g KERNEL_MAJOR_MINOR="5.10" # Major and minor versions of this kernel. + KERNELBRANCH='branch:rk-5.10-rkr6' + declare -g -i KERNEL_GIT_CACHE_TTL=120 # 2 minutes; this is a high-traffic repo + declare -g KERNEL_MAJOR_MINOR="5.10" # Major and minor versions of this kernel. KERNELDIR='linux-rockchip64' KERNELPATCHDIR='rk35xx-legacy' diff --git a/config/sources/families/rockchip-rk3588.conf b/config/sources/families/rockchip-rk3588.conf index 3006a436eb..e2b3dc3180 100644 --- a/config/sources/families/rockchip-rk3588.conf +++ b/config/sources/families/rockchip-rk3588.conf @@ -22,9 +22,10 @@ case $BRANCH in UBOOT_USE_GCC='< 8.0' BOOTDIR='u-boot-rockchip64' KERNELDIR='linux-rockchip64' - KERNELSOURCE='https://github.com/armbian/linux-rockchip' - declare -g KERNEL_MAJOR_MINOR="5.10" # Major and minor versions of this kernel. - KERNELBRANCH='branch:rk-5.10-rkr5.1' + KERNELSOURCE='https://github.com/armbian/linux-rockchip.git' + declare -g KERNEL_MAJOR_MINOR="5.10" # Major and minor versions of this kernel. + declare -g -i KERNEL_GIT_CACHE_TTL=120 # 2 minutes; this is a high-traffic repo + KERNELBRANCH='branch:rk-5.10-rkr6' KERNELPATCHDIR='rk35xx-legacy' LINUXFAMILY=rk35xx ;;