mirror of
https://github.com/xddxdd/nix-cachyos-kernel.git
synced 2026-07-03 19:18:07 +02:00
Add linux-cachyos-rc variants
This commit is contained in:
parent
4d1b0c56ac
commit
d91219fabf
@ -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
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user