Add linux-cachyos-rc variants

This commit is contained in:
Lan Tian 2025-12-23 21:30:03 -08:00
parent 4d1b0c56ac
commit d91219fabf
No known key found for this signature in database
GPG Key ID: 04E66B6B25A0862B
2 changed files with 15 additions and 0 deletions

View File

@ -28,6 +28,8 @@ This repo provides the following kernel variants, consistent with the [upstream
├───linux-cachyos-eevdf-lto
├───linux-cachyos-hardened
├───linux-cachyos-hardened-lto
├───linux-cachyos-rc
├───linux-cachyos-rc-lto
├───linux-cachyos-rt-bore
├───linux-cachyos-rt-bore-lto
├───linux-cachyos-server

View File

@ -3,6 +3,7 @@
callPackage,
lib,
linux_latest,
linux_testing,
linux,
...
}:
@ -105,6 +106,18 @@ builtins.listToAttrs (
hardened = true;
lto = true;
})
(mkCachyKernel {
pname = "linux-cachyos-rc";
inherit (linux_testing) version src;
configVariant = "linux-cachyos-rc";
lto = false;
})
(mkCachyKernel {
pname = "linux-cachyos-rc-lto";
inherit (linux_testing) version src;
configVariant = "linux-cachyos-rc";
lto = true;
})
(mkCachyKernel {
pname = "linux-cachyos-rt-bore";
inherit (linux_latest) version src;