Skip to content

Commit 191d6db

Browse files
authored
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
1 parent 8325404 commit 191d6db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

config/sources/mainline-kernel.conf.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
# Shared versioning logic for Armbian mainline kernels.
88
function mainline_kernel_decide_version__upstream_release_candidate_number() {
99
[[ -n "${KERNELBRANCH}" ]] && return 0 # if already set, don't touch it; that way other hooks can run in any order
10-
if [[ "${KERNEL_MAJOR_MINOR}" == "6.17" ]]; then # @TODO: roll over to next MAJOR.MINOR and MAJOR.MINOR-rc1 when it is released
11-
declare -g KERNELBRANCH="tag:v6.17"
10+
if [[ "${KERNEL_MAJOR_MINOR}" == "6.18" ]]; then # @TODO: roll over to next MAJOR.MINOR and MAJOR.MINOR-rc1 when it is released
11+
declare -g KERNELBRANCH="tag:v6.18-rc1"
1212
display_alert "mainline-kernel: upstream release candidate" "Using KERNELBRANCH='${KERNELBRANCH}' for KERNEL_MAJOR_MINOR='${KERNEL_MAJOR_MINOR}'" "info"
1313
fi
1414
}

0 commit comments

Comments
 (0)