From fe6f5879f61e18fa7ee48a209d51cfe0d648416d Mon Sep 17 00:00:00 2001 From: kernelzru <106839081+kernelzru@users.noreply.github.com> Date: Sat, 18 May 2024 01:06:05 +0300 Subject: [PATCH] Update mainline-kernel.conf.sh as kernel 6.9 is released --- 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 10f136138f2d..f9392a440869 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.9" ]]; then # @TODO: roll over to next MAJOR.MINOR and MAJOR.MINOR-rc1 when it is released - declare -g KERNELBRANCH="tag:v6.9-rc1" + if [[ "${KERNEL_MAJOR_MINOR}" == "6.10" ]]; then # @TODO: roll over to next MAJOR.MINOR and MAJOR.MINOR-rc1 when it is released + declare -g KERNELBRANCH="tag:v6.10-rc1" display_alert "mainline-kernel: upstream release candidate" "Using KERNELBRANCH='${KERNELBRANCH}' for KERNEL_MAJOR_MINOR='${KERNEL_MAJOR_MINOR}'" "info" fi }