Add v2 variants for BORE kernel

This commit is contained in:
Lan Tian 2026-05-20 19:04:12 -07:00
parent 378b8c365e
commit a7a6fddf37
No known key found for this signature in database
GPG Key ID: 04E66B6B25A0862B

View File

@ -154,6 +154,13 @@ builtins.listToAttrs (
configVariant = "linux-cachyos-bore"; configVariant = "linux-cachyos-bore";
cpusched = "bore"; cpusched = "bore";
}) })
(mkCachyKernel {
pname = "linux-cachyos-bore-x86_64-v2";
inherit (linuxSources.latest) version src;
configVariant = "linux-cachyos-bore";
cpusched = "bore";
processorOpt = "x86_64-v2";
})
(mkCachyKernel { (mkCachyKernel {
pname = "linux-cachyos-bore-x86_64-v3"; pname = "linux-cachyos-bore-x86_64-v3";
inherit (linuxSources.latest) version src; inherit (linuxSources.latest) version src;
@ -182,6 +189,14 @@ builtins.listToAttrs (
lto = "thin"; lto = "thin";
cpusched = "bore"; cpusched = "bore";
}) })
(mkCachyKernel {
pname = "linux-cachyos-bore-lto-x86_64-v2";
inherit (linuxSources.latest) version src;
configVariant = "linux-cachyos-bore";
lto = "thin";
cpusched = "bore";
processorOpt = "x86_64-v2";
})
(mkCachyKernel { (mkCachyKernel {
pname = "linux-cachyos-bore-lto-x86_64-v3"; pname = "linux-cachyos-bore-lto-x86_64-v3";
inherit (linuxSources.latest) version src; inherit (linuxSources.latest) version src;