From ffd6aa3896889f46b65853b6dca606840714cc1c Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sun, 18 Jan 2026 10:15:57 +0200 Subject: [PATCH] Enable TideLinux kernel name matching in the default configuration file --- pkg.info | 2 +- source.sh | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg.info b/pkg.info index d6675e1..ac410d4 100644 --- a/pkg.info +++ b/pkg.info @@ -1,7 +1,7 @@ name: refind description: EFI Boot Manager version: 0.14.2 -revision: 1 +revision: 2 url: https://www.rodsbooks.com/refind/ license: BSD-2-Clause,CC-BY-SA-3.0,CC-BY-SA-4.0,GPL2-only,GPL2-or-later,GPL3-or-later,LGPL2.1-or-later,LGPL3-or-later OR CC-BY-SA-3.0 architecture: any diff --git a/source.sh b/source.sh index 80805d1..59ea503 100644 --- a/source.sh +++ b/source.sh @@ -12,6 +12,8 @@ prepare() { sed -e 's|RefindDir=\"\$ThisDir/refind\"|RefindDir="/usr/share/refind/"|g' -i refind-install # add vendor line to the sbat file printf 'refind.%s,%s,%s,refind,%s,%s\n' 'tide' '1' 'Tide Linux' "${epoch:+${epoch}:}${BPM_PKG_VERSION}" 'https://git.enumerated.dev/tidelinux/refind' >> refind-sbat.csv + # Enable TideLinux kernel name matching in the default configuration file + sed -E 's/^#(extra_kernel_version_strings).*$/\1 "linux-stable,linux-lts,linux-mainline"/' -i refind.conf-sample } # The build function is executed in the source directory