From 191d6db942ce913506af5bdc76d16173408575cb Mon Sep 17 00:00:00 2001 From: Ricardo Pardini Date: Fri, 10 Oct 2025 08:15:40 +0200 Subject: [PATCH] mainline-kernel.conf: let 6.17 update further than v6.17 (eg v6.17.1) (#8737) - when X is released, please update it to X+1-rc1 - otherwise we miss on stable updates --- config/sources/mainline-kernel.conf.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/sources/mainline-kernel.conf.sh b/config/sources/mainline-kernel.conf.sh index 6e9aa105a0..dda392049f 100644 --- a/config/sources/mainline-kernel.conf.sh +++ b/config/sources/mainline-kernel.conf.sh @@ -7,8 +7,8 @@ # Shared versioning logic for Armbian mainline kernels. function mainline_kernel_decide_version__upstream_release_candidate_number() { [[ -n "${KERNELBRANCH}" ]] && return 0 # if already set, don't touch it; that way other hooks can run in any order - if [[ "${KERNEL_MAJOR_MINOR}" == "6.17" ]]; then # @TODO: roll over to next MAJOR.MINOR and MAJOR.MINOR-rc1 when it is released - declare -g KERNELBRANCH="tag:v6.17" + if [[ "${KERNEL_MAJOR_MINOR}" == "6.18" ]]; then # @TODO: roll over to next MAJOR.MINOR and MAJOR.MINOR-rc1 when it is released + declare -g KERNELBRANCH="tag:v6.18-rc1" display_alert "mainline-kernel: upstream release candidate" "Using KERNELBRANCH='${KERNELBRANCH}' for KERNEL_MAJOR_MINOR='${KERNEL_MAJOR_MINOR}'" "info" fi }