mirror of
https://github.com/archlinux/aur.git
synced 2026-02-09 06:38:44 +01:00
Sync with Github
Signed-off-by: Piotr Gorski <lucjan.lucjanov@gmail.com>
This commit is contained in:
parent
5be1975fd2
commit
d736054e93
3 changed files with 10 additions and 23 deletions
4
.SRCINFO
4
.SRCINFO
|
|
@ -1,7 +1,7 @@
|
|||
pkgbase = linux-cachyos-eevdf
|
||||
pkgdesc = Linux EEVDF scheduler Kernel by CachyOS with other patches and improvements
|
||||
pkgver = 6.7.2
|
||||
pkgrel = 1
|
||||
pkgrel = 2
|
||||
url = https://github.com/CachyOS/linux-cachyos
|
||||
arch = x86_64
|
||||
arch = x86_64_v3
|
||||
|
|
@ -27,7 +27,7 @@ pkgbase = linux-cachyos-eevdf
|
|||
source = auto-cpu-optimization.sh
|
||||
source = https://raw.githubusercontent.com/cachyos/kernel-patches/master/6.7/all/0001-cachyos-base-all.patch
|
||||
b2sums = 4c1f480de0c1458aa67379cd02d35708f63850adb84a85061088de1f82b5d084bc7cf7da459a3f1e415544351d1f36a9a832277240774ae461cdde11687cbadd
|
||||
b2sums = 9c7b52c103a8506c027a28e81779ecba972f3c85f8917359282a6183d04d04407950ba55d3db13b285b722aafb68f308b16733e575e6b2f6e77b08682c7e5dc4
|
||||
b2sums = 1da8ae554a57e2c2ecbc2bce091a8f27f2f8403b63a4c38f0c1df0b1607de67abbe99ba5fcb87a246a46e925b762865adc092bf18c7317d5b19e58087d787491
|
||||
b2sums = 43ef7a347878592740d9eb23b40a56083fa747f7700fa1e2c6d039d660c0b876d99bf1a3160e15d041fb13d45906cdb5defef034d4d0ae429911864239c94d8d
|
||||
b2sums = a89904cd7c7248ca97ace716330d76950edcbbbc9b9fb36e46841914c1ab6f0ec16549d308846b89b16df1943c652977983632808da59d8596fbe12e9e9e3f9f
|
||||
|
||||
|
|
|
|||
23
PKGBUILD
23
PKGBUILD
|
|
@ -20,10 +20,6 @@ _cachy_config=${_cachy_config-y}
|
|||
# 'sched-ext' - select 'sched-ext' Scheduler, based on EEVDF
|
||||
_cpusched=${_cpusched-eevdf}
|
||||
|
||||
# Apply suggested sysctl values from them developer of the BORE Scheduler
|
||||
# base_slice and disable tuneable scaling
|
||||
_bore_tuning_sysctl=${_bore_tuning_sysctl-}
|
||||
|
||||
### Tweak kernel options prior to a build via nconfig
|
||||
_makenconfig=${_makenconfig-}
|
||||
|
||||
|
|
@ -178,7 +174,7 @@ _stable=${_major}.${_minor}
|
|||
_srcname=linux-${_stable}
|
||||
#_srcname=linux-${_major}
|
||||
pkgdesc='Linux EEVDF scheduler Kernel by CachyOS with other patches and improvements'
|
||||
pkgrel=1
|
||||
pkgrel=2
|
||||
_kernver=$pkgver-$pkgrel
|
||||
arch=('x86_64' 'x86_64_v3')
|
||||
url="https://github.com/CachyOS/linux-cachyos"
|
||||
|
|
@ -228,9 +224,8 @@ fi
|
|||
|
||||
## List of CachyOS schedulers
|
||||
case "$_cpusched" in
|
||||
cachyos) # CachyOS Scheduler (BORE + SCHED-EXT)
|
||||
source+=("${_patchsource}/sched/0001-sched-ext.patch"
|
||||
"${_patchsource}/sched/0001-bore-cachy.patch");;
|
||||
cachyos|sched-ext) ## SCHED-EXT
|
||||
source+=("${_patchsource}/sched/0001-sched-ext.patch");;
|
||||
bore) ## BORE Scheduler
|
||||
source+=("${_patchsource}/sched/0001-bore-cachy.patch");;
|
||||
rt) ## EEVDF with RT patches
|
||||
|
|
@ -243,15 +238,8 @@ case "$_cpusched" in
|
|||
hardened) ## Hardened Patches with BORE Scheduler
|
||||
source+=("${_patchsource}/sched/0001-bore-cachy.patch"
|
||||
"${_patchsource}/misc/0001-hardened.patch");;
|
||||
sched-ext) ## SCHED-EXT
|
||||
source+=("${_patchsource}/sched/0001-sched-ext.patch");;
|
||||
esac
|
||||
|
||||
# BORE Tuning Sysctl
|
||||
if [ -n "$_bore_tuning_sysctl" ]; then
|
||||
source+=("${_patchsource}/misc/bore-tuning-sysctl.patch")
|
||||
fi
|
||||
|
||||
## lrng patchset
|
||||
if [ -n "$_lrng_enable" ]; then
|
||||
source+=("${_patchsource}/misc/0001-lrng.patch")
|
||||
|
|
@ -308,12 +296,11 @@ prepare() {
|
|||
[ -z "$_cpusched" ] && _die "The value is empty. Choose the correct one again."
|
||||
|
||||
case "$_cpusched" in
|
||||
cachyos) scripts/config -e SCHED_BORE -e SCHED_CLASS_EXT;;
|
||||
cachyos|sched-ext) scripts/config -e SCHED_CLASS_EXT;;
|
||||
bore|hardened) scripts/config -e SCHED_BORE;;
|
||||
eevdf) ;;
|
||||
rt) scripts/config -e PREEMPT_COUNT -e PREEMPTION -d PREEMPT_VOLUNTARY -d PREEMPT -d PREEMPT_NONE -e PREEMPT_RT -d PREEMPT_DYNAMIC -d PREEMPT_BUILD;;
|
||||
rt-bore) scripts/config -e SCHED_BORE -e PREEMPT_COUNT -e PREEMPTION -d PREEMPT_VOLUNTARY -d PREEMPT -d PREEMPT_NONE -e PREEMPT_RT -d PREEMPT_DYNAMIC -d PREEMPT_BUILD;;
|
||||
sched-ext) scripts/config -e SCHED_CLASS_EXT;;
|
||||
*) _die "The value $_cpusched is invalid. Choose the correct one again.";;
|
||||
esac
|
||||
|
||||
|
|
@ -830,6 +817,6 @@ for _p in "${pkgname[@]}"; do
|
|||
done
|
||||
|
||||
b2sums=('4c1f480de0c1458aa67379cd02d35708f63850adb84a85061088de1f82b5d084bc7cf7da459a3f1e415544351d1f36a9a832277240774ae461cdde11687cbadd'
|
||||
'9c7b52c103a8506c027a28e81779ecba972f3c85f8917359282a6183d04d04407950ba55d3db13b285b722aafb68f308b16733e575e6b2f6e77b08682c7e5dc4'
|
||||
'1da8ae554a57e2c2ecbc2bce091a8f27f2f8403b63a4c38f0c1df0b1607de67abbe99ba5fcb87a246a46e925b762865adc092bf18c7317d5b19e58087d787491'
|
||||
'43ef7a347878592740d9eb23b40a56083fa747f7700fa1e2c6d039d660c0b876d99bf1a3160e15d041fb13d45906cdb5defef034d4d0ae429911864239c94d8d'
|
||||
'a89904cd7c7248ca97ace716330d76950edcbbbc9b9fb36e46841914c1ab6f0ec16549d308846b89b16df1943c652977983632808da59d8596fbe12e9e9e3f9f')
|
||||
|
|
|
|||
6
config
6
config
|
|
@ -1,6 +1,6 @@
|
|||
#
|
||||
# Automatically generated file; DO NOT EDIT.
|
||||
# Linux/x86 6.7.1 Kernel Configuration
|
||||
# Linux/x86 6.7.2 Kernel Configuration
|
||||
#
|
||||
CONFIG_CC_VERSION_TEXT="gcc (GCC) 13.2.1 20231110"
|
||||
CONFIG_CC_IS_GCC=y
|
||||
|
|
@ -7381,7 +7381,6 @@ CONFIG_SND_DESIGNWARE_PCM=y
|
|||
# CONFIG_SND_SOC_FSL_ESAI is not set
|
||||
# CONFIG_SND_SOC_FSL_MICFIL is not set
|
||||
CONFIG_SND_SOC_FSL_XCVR=m
|
||||
CONFIG_SND_SOC_FSL_RPMSG=m
|
||||
# CONFIG_SND_SOC_IMX_AUDMUX is not set
|
||||
# end of SoC Audio for Freescale CPUs
|
||||
|
||||
|
|
@ -11582,13 +11581,14 @@ CONFIG_DEBUG_LIST=y
|
|||
CONFIG_RCU_CPU_STALL_TIMEOUT=60
|
||||
CONFIG_RCU_EXP_CPU_STALL_TIMEOUT=0
|
||||
# CONFIG_RCU_CPU_STALL_CPUTIME is not set
|
||||
# CONFIG_RCU_CPU_STALL_NOTIFIER is not set
|
||||
# CONFIG_RCU_TRACE is not set
|
||||
# CONFIG_RCU_EQS_DEBUG is not set
|
||||
# end of RCU Debugging
|
||||
|
||||
# CONFIG_DEBUG_WQ_FORCE_RR_CPU is not set
|
||||
# CONFIG_CPU_HOTPLUG_STATE_CONTROL is not set
|
||||
CONFIG_LATENCYTOP=y
|
||||
# CONFIG_LATENCYTOP is not set
|
||||
# CONFIG_DEBUG_CGROUP_REF is not set
|
||||
CONFIG_USER_STACKTRACE_SUPPORT=y
|
||||
CONFIG_NOP_TRACER=y
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue