From fae99241a99b5ae80418f18b34edbf2d962a0cdc Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Mon, 19 Jun 2023 22:03:07 +0200 Subject: [PATCH] Added "midstream" to the interactive config kernel branch selection. (#5349) Co-authored-by: Michael Beck --- lib/functions/configuration/interactive.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/functions/configuration/interactive.sh b/lib/functions/configuration/interactive.sh index bc6820f700..ca74821b45 100644 --- a/lib/functions/configuration/interactive.sh +++ b/lib/functions/configuration/interactive.sh @@ -186,6 +186,7 @@ function interactive_config_ask_branch() { [[ $KERNEL_TARGET == *current* ]] && options+=("current" "Recommended. Usually an LTS kernel") [[ $KERNEL_TARGET == *legacy* ]] && options+=("legacy" "Old stable / Legacy / Vendor kernel") [[ $KERNEL_TARGET == *edge* ]] && options+=("edge" "Bleeding edge / latest possible") + [[ $KERNEL_TARGET == *midstream* ]] && options+=("midstream" "Hybrid of edge and vendor kernel") dialog_if_terminal_set_vars --title "Choose a kernel" --backtitle "$backtitle" --colors \ --menu "Select the target kernel branch.\nSelected BOARD='${BOARD}'\nExact kernel versions depend on selected board and its family." \