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-eevdf-lto
|
||||||
├───linux-cachyos-hardened
|
├───linux-cachyos-hardened
|
||||||
├───linux-cachyos-hardened-lto
|
├───linux-cachyos-hardened-lto
|
||||||
|
├───linux-cachyos-rc
|
||||||
|
├───linux-cachyos-rc-lto
|
||||||
├───linux-cachyos-rt-bore
|
├───linux-cachyos-rt-bore
|
||||||
├───linux-cachyos-rt-bore-lto
|
├───linux-cachyos-rt-bore-lto
|
||||||
├───linux-cachyos-server
|
├───linux-cachyos-server
|
||||||
|
|||||||
@ -3,6 +3,7 @@
|
|||||||
callPackage,
|
callPackage,
|
||||||
lib,
|
lib,
|
||||||
linux_latest,
|
linux_latest,
|
||||||
|
linux_testing,
|
||||||
linux,
|
linux,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
@ -105,6 +106,18 @@ builtins.listToAttrs (
|
|||||||
hardened = true;
|
hardened = true;
|
||||||
lto = 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 {
|
(mkCachyKernel {
|
||||||
pname = "linux-cachyos-rt-bore";
|
pname = "linux-cachyos-rt-bore";
|
||||||
inherit (linux_latest) version src;
|
inherit (linux_latest) version src;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user