From a7a6fddf376f8e32eae85f9dfdbf4b6089ce0e86 Mon Sep 17 00:00:00 2001 From: Lan Tian Date: Wed, 20 May 2026 19:04:12 -0700 Subject: [PATCH] Add v2 variants for BORE kernel --- kernel-cachyos/default.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/kernel-cachyos/default.nix b/kernel-cachyos/default.nix index 7a0fa77..d32d787 100644 --- a/kernel-cachyos/default.nix +++ b/kernel-cachyos/default.nix @@ -154,6 +154,13 @@ builtins.listToAttrs ( configVariant = "linux-cachyos-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 { pname = "linux-cachyos-bore-x86_64-v3"; inherit (linuxSources.latest) version src; @@ -182,6 +189,14 @@ builtins.listToAttrs ( lto = "thin"; 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 { pname = "linux-cachyos-bore-lto-x86_64-v3"; inherit (linuxSources.latest) version src;