Skip to content

Commit fd701cc

Browse files
committed
PKGBUILD: Remove cachyos from $cpusched options
This option served two purposes in the past: 1. <6.6: Chooses BORE+EEVDF+sched-ext, at this time, CFS was still the default scheduler 2. <6.12: Chooses BORE+sched-ext Now, this option has no difference than `bore` and only serves to confuse the user. This can also help the PKGBUILDs that have `cachyos-$_cpusched` as suffixes, since unknowingly choosing `cachyos` will lead to a package name of `linux-cachyos-cachyos`. Signed-off-by: Eric Naim <dnaim@cachyos.org>
1 parent 31b07fe commit fd701cc

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

linux-cachyos-rc/PKGBUILD

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ _cachy_config=${_cachy_config-y}
1616
# 'bore' - select 'Burst-Oriented Response Enhancer'
1717
# 'bmq' - select 'BMQ Scheduler'
1818
# 'hardened' - select 'BORE Scheduler hardened' ## kernel with hardened config and hardening patches with the bore scheduler
19-
# 'cachyos' - select 'CachyOS Default Scheduler (BORE)'
2019
# 'eevdf' - select 'EEVDF Scheduler'
21-
_cpusched=${_cpusched-cachyos}
20+
_cpusched=${_cpusched-bore}
2221

2322
### Tweak kernel options prior to a build via nconfig
2423
_makenconfig=${_makenconfig-}
@@ -263,7 +262,7 @@ fi
263262

264263
## List of CachyOS schedulers
265264
case "$_cpusched" in
266-
cachyos|bore|hardened) # CachyOS Scheduler (BORE)
265+
bore|hardened) # CachyOS Scheduler (BORE)
267266
source+=("${_patchsource}/sched/0001-bore-cachy.patch");;&
268267
bmq) ## Project C Scheduler
269268
source+=("${_patchsource}/sched/0001-prjc-cachy.patch");;

0 commit comments

Comments
 (0)