From 182b6a5f5bb7764d44c04f95c201a363bbb2f312 Mon Sep 17 00:00:00 2001 From: Juerg Haefliger Date: Wed, 30 Jul 2025 17:34:32 +0200 Subject: [PATCH] build: Fix lowlatency kernel flavour name Nowadays the lowlatency kernel is just the generic kernel with some bootargs to make it lowlatency. Hence the flavour name is 'generic'. --- live-build/auto/build | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/live-build/auto/build b/live-build/auto/build index 222a5b52..2d788c50 100755 --- a/live-build/auto/build +++ b/live-build/auto/build @@ -498,7 +498,7 @@ for FLAVOUR in $LB_LINUX_FLAVOURS; do continue fi case $FLAVOUR in - allwinner|virtual|generic-hwe-*) + allwinner|virtual|generic-hwe-*|lowlatency-hwe-*) FLAVOUR="generic" ;; oem-*) @@ -510,9 +510,6 @@ for FLAVOUR in $LB_LINUX_FLAVOURS; do intel-iotg*) FLAVOUR="intel-iotg" ;; - lowlatency-hwe-*) - FLAVOUR="lowlatency" - ;; esac KVERS="$( (cd "binary/$INITFS"; ls vmlinu?-* 2>/dev/null || true) | (fgrep -v .efi || true) | sed -n "s/^vmlinu.-\\([^-]*-[^-]*-$FLAVOUR\\)$/\\1/p" )" if [ -z "$KVERS" ]; then