diff options
author | Piotr Gorski | 2022-09-28 01:18:07 +0200 |
---|---|---|
committer | Piotr Gorski | 2022-09-28 01:18:07 +0200 |
commit | 7b91a588101e09aeb23d4a2f179bb5b92311096d (patch) | |
tree | 4c4647f6232839c5851e64b41883c2d0a97a2757 /PKGBUILD | |
parent | afaf3a3ec04569b3070ca64e67c836b9baa97d5f (diff) | |
download | aur-7b91a588101e09aeb23d4a2f179bb5b92311096d.tar.gz |
Improve nest and latency nice flags
Signed-off-by: Piotr Gorski <lucjan.lucjanov@gmail.com>
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -272,11 +272,15 @@ if [ -n "$_bcachefs" ]; then fi ## NEST Support if [ -n "$_nest" ]; then + if [[ "$_cpusched" = "bore" || "$_cpusched" = "cfs" || "$_cpusched" = "hardened" ]]; then source+=("${_patchsource}/sched/0001-NEST.patch") + fi fi ## Latency NICE Support if [ -n "$_latency_nice" ]; then + if [[ "$_cpusched" = "bore" || "$_cpusched" = "cfs" || "$_cpusched" = "hardened" ]]; then source+=("${_patchsource}/misc/0001-Add-latency-priority-for-CFS-class.patch") + fi fi export KBUILD_BUILD_HOST=cachyos |