From fca2f9c24ed8bb9d28e56954a05992ff6adc059a Mon Sep 17 00:00:00 2001 From: Jarvvay <235649630+Jarvvay@users.noreply.github.com> Date: Fri, 20 Mar 2026 04:30:40 +0000 Subject: [PATCH] Ensure BORE patch is applied both for rt and rt-bore --- kernel-cachyos/mkCachyKernel.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel-cachyos/mkCachyKernel.nix b/kernel-cachyos/mkCachyKernel.nix index 4760cc9..b085c59 100644 --- a/kernel-cachyos/mkCachyKernel.nix +++ b/kernel-cachyos/mkCachyKernel.nix @@ -85,7 +85,7 @@ lib.makeOverridable ( cachyosConfigFile = "${inputs.cachyos-kernel.outPath}/${configVariant}/config"; cachyosPatches = builtins.map (p: "${inputs.cachyos-kernel-patches.outPath}/${patchVersion}/${p}") ( - (lib.optional (cpusched == "bore") "sched/0001-bore-cachy.patch") + (lib.optional (cpusched == "bore" || cpusched == "rt-bore") "sched/0001-bore-cachy.patch") ++ (lib.optional (cpusched == "bmq") "sched/0001-prjc-cachy.patch") ++ (lib.optional hardened "misc/0001-hardened.patch") ++ (lib.optional rt "misc/0001-rt-i915.patch")