From 1dac001d36f367984fc8e4c6bf29cdadd37e0706 Mon Sep 17 00:00:00 2001 From: amazingfate Date: Sun, 16 Feb 2025 13:03:32 +0800 Subject: [PATCH] mainline-kernel.conf.sh: bump 6.14 to rc2 --- config/sources/mainline-kernel.conf.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/sources/mainline-kernel.conf.sh b/config/sources/mainline-kernel.conf.sh index 6231257d9e..f2414701c8 100644 --- a/config/sources/mainline-kernel.conf.sh +++ b/config/sources/mainline-kernel.conf.sh @@ -8,7 +8,7 @@ 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.14" ]]; then # @TODO: roll over to next MAJOR.MINOR and MAJOR.MINOR-rc1 when it is released - declare -g KERNELBRANCH="tag:v6.14-rc1" + declare -g KERNELBRANCH="tag:v6.14-rc2" display_alert "mainline-kernel: upstream release candidate" "Using KERNELBRANCH='${KERNELBRANCH}' for KERNEL_MAJOR_MINOR='${KERNEL_MAJOR_MINOR}'" "info" fi }