Skip to content
Merged
8 changes: 4 additions & 4 deletions config/sources/families/include/uefi_common.inc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ case "${BRANCH}" in
;;
cloud)
declare -g GRUB_CMDLINE_LINUX_DEFAULT="selinux=0 loglevel=3 max_loop=32"
declare -g KERNEL_MAJOR_MINOR="6.12"
declare -g KERNEL_MAJOR_MINOR="6.18"
declare -g LINUXCONFIG="linux-uefi-${LINUXFAMILY}-cloud"
declare -g INSTALL_ARMBIAN_FIRMWARE="no"
declare -g EXTRAWIFI="no"
Expand All @@ -34,15 +34,15 @@ case "${BRANCH}" in
;;

legacy)
declare -g KERNEL_MAJOR_MINOR="6.6"
declare -g KERNEL_MAJOR_MINOR="6.12"
;;

current)
declare -g KERNEL_MAJOR_MINOR="6.12"
declare -g KERNEL_MAJOR_MINOR="6.18"
;;

edge)
declare -g KERNEL_MAJOR_MINOR="6.18"
declare -g KERNEL_MAJOR_MINOR="6.19"
;;
esac

Expand Down
8 changes: 8 additions & 0 deletions config/sources/families/uefi-loong64.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,11 @@ declare -g ARCH="loong64"
# shellcheck source=config/sources/families/include/uefi_common.inc
source "${BASH_SOURCE%/*}/include/uefi_common.inc"
enable_extension "grub"

# @TODO: TEMP: hold loong64 edge kernel at 6.18 while amazingfate reworks 6.19
case "${BRANCH}" in
edge)
declare -g KERNEL_MAJOR_MINOR="6.18"
declare -g KERNELPATCHDIR="archive/uefi-${LINUXFAMILY}-${KERNEL_MAJOR_MINOR}" # override uefi_common
;;
esac
Loading