diff --git a/PKGBUILD b/PKGBUILD index 9182a8d..16dd89e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -56,7 +56,7 @@ else fi pkgname=("${pkgbase}" "${pkgbase}-headers") pkgver="${_basekernel}"."${_sub}" -pkgrel=269 +pkgrel=270 pkgdesc='Linux-tkg' arch=('x86_64') # no i686 in here url="https://www.kernel.org/" diff --git a/customization.cfg b/customization.cfg index dba94d2..64de099 100644 --- a/customization.cfg +++ b/customization.cfg @@ -222,7 +222,7 @@ _random_trust_cpu="false" # Valid values are "none", "smt", "mc", "mc-llc"(for zen), "smp", "all" - Kernel default is "smt" _runqueue_sharing="" -# Timer frequency - "100" "500", "750" or "1000" ("2000" can be set for cacule cpu sched, and will fallback to default if set while on another schedulers) - More options available in kernel config prompt when left empty depending on selected cpusched with the default option pointed with a ">" +# Timer frequency - "100" "250" "300" "500" "750" "1000" ("2000" is available for cacule cpusched only) - More options available in kernel config prompt when left empty depending on selected cpusched with the default option pointed with a ">" (2000 for cacule, 100 for muqss and 1000 for other cpu schedulers) _timer_freq="" # Default CPU governor - "performance", "ondemand", "schedutil" or leave empty for default (schedutil) diff --git a/linux-tkg-config/prepare b/linux-tkg-config/prepare index ebd1f31..7dd05bb 100644 --- a/linux-tkg-config/prepare +++ b/linux-tkg-config/prepare @@ -1257,14 +1257,14 @@ _tkg_srcprep() { typeset -A _default_timer_frequencies_index _default_timer_frequencies_index=( - ["pds"]="3" + ["pds"]="5" ["muqss"]="1" - ["cacule"]="5" + ["cacule"]="6" ["tt"]="5" - ["upds"]="3" - ["cfs"]="3" - ["bmq"]="3" - ["bore"]="3" + ["upds"]="5" + ["cfs"]="5" + ["bmq"]="5" + ["bore"]="5" ) if [[ -n "$_timer_freq" && ! "${_avail_timer_frequencies[*]}" =~ "$_timer_freq" ]]; then @@ -1272,7 +1272,7 @@ _tkg_srcprep() { _timer_freq="" fi - # Default to 500Hz if _timer_freq is not set + # Default to 1000Hz if _timer_freq is not set if [ -z "$_timer_freq" ]; then _default_index="${_default_timer_frequencies_index[$_cpusched]}" msg2 "Which kernel interrupt timer frequency would you like to use ?"