5.19.0-1
This commit is contained in:
parent
2638af3f36
commit
7fce346578
16
.SRCINFO
16
.SRCINFO
@ -1,6 +1,6 @@
|
|||||||
pkgbase = linux-cachyos
|
pkgbase = linux-cachyos
|
||||||
pkgdesc = Linux BORE scheduler Kernel by CachyOS with other patches and improvements
|
pkgdesc = Linux BORE scheduler Kernel by CachyOS with other patches and improvements
|
||||||
pkgver = 5.18.15
|
pkgver = 5.19.0
|
||||||
pkgrel = 1
|
pkgrel = 1
|
||||||
url = https://github.com/CachyOS/linux-cachyos
|
url = https://github.com/CachyOS/linux-cachyos
|
||||||
arch = x86_64
|
arch = x86_64
|
||||||
@ -21,16 +21,16 @@ pkgbase = linux-cachyos
|
|||||||
makedepends = make
|
makedepends = make
|
||||||
makedepends = patch
|
makedepends = patch
|
||||||
options = !strip
|
options = !strip
|
||||||
source = https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.18.15.tar.xz
|
source = https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.19.tar.xz
|
||||||
source = config
|
source = config
|
||||||
source = auto-cpu-optimization.sh
|
source = auto-cpu-optimization.sh
|
||||||
source = https://raw.githubusercontent.com/ptr1337/kernel-patches/master/5.18/all/0001-cachyos-base-all.patch
|
source = https://raw.githubusercontent.com/ptr1337/kernel-patches/master/5.19/all/0001-cachyos-base-all.patch
|
||||||
source = https://raw.githubusercontent.com/ptr1337/kernel-patches/master/5.18/sched/0001-bore-sched.patch
|
source = https://raw.githubusercontent.com/ptr1337/kernel-patches/master/5.19/sched/0001-bore.patch
|
||||||
sha256sums = 69804febdc388a69dfb64493b7b58d402853de3a14144ea8db7fd67c30dcbe3c
|
sha256sums = ff240c579b9ee1affc318917de07394fc1c3bb49dac25ec1287370c2e15005a8
|
||||||
sha256sums = 9b2cfc2cbf7015ec50d6f849fdf49c53a2d257d20a0988465759936db3aaf209
|
sha256sums = 42d2127e3fb3bc96024c8af9d3eaead69007f64b1096d13767249bd9afeb043c
|
||||||
sha256sums = ce8bf7807b45a27eed05a5e1de5a0bf6293a3bbc2085bacae70cd1368f368d1f
|
sha256sums = ce8bf7807b45a27eed05a5e1de5a0bf6293a3bbc2085bacae70cd1368f368d1f
|
||||||
sha256sums = 0b256630b9f79e776cf447a825dad88e5a6daf8693de35b2ff892e14b9212365
|
sha256sums = 4575169c1ed71ddc0ae0d832d0c8df75b506f1bf6891b9166dbb23e628fbfb21
|
||||||
sha256sums = 7a36fe0a53a644ade0ce85f08f9ca2ebaddd47876966b7cc9d4cae8844649271
|
sha256sums = 0fe7f1698639df033709c6d32e651d378fc6e320dfc6387f8aee83d9ed0231a8
|
||||||
|
|
||||||
pkgname = linux-cachyos
|
pkgname = linux-cachyos
|
||||||
pkgdesc = The Linux BORE scheduler Kernel by CachyOS with other patches and improvements kernel and modules
|
pkgdesc = The Linux BORE scheduler Kernel by CachyOS with other patches and improvements kernel and modules
|
||||||
|
137
PKGBUILD
137
PKGBUILD
@ -43,6 +43,9 @@ _localmodcfg=
|
|||||||
# a new kernel is released, but again, convenient for package bumps.
|
# a new kernel is released, but again, convenient for package bumps.
|
||||||
_use_current=
|
_use_current=
|
||||||
|
|
||||||
|
### Enable KBUILD_CFLAGS -O3
|
||||||
|
_cc_harder=y
|
||||||
|
|
||||||
### Set performance governor as default
|
### Set performance governor as default
|
||||||
_per_gov=y
|
_per_gov=y
|
||||||
|
|
||||||
@ -50,7 +53,7 @@ _per_gov=y
|
|||||||
_tcp_bbr2=y
|
_tcp_bbr2=y
|
||||||
|
|
||||||
### Running with a 1000HZ, 750Hz, 600 Hz or 500Hz tick rate
|
### Running with a 1000HZ, 750Hz, 600 Hz or 500Hz tick rate
|
||||||
_HZ_ticks=1000
|
_HZ_ticks=750
|
||||||
|
|
||||||
## Choose between perodic, idle or full
|
## Choose between perodic, idle or full
|
||||||
### Full tickless can give higher performances in various cases but, depending on hardware, lower consistency.
|
### Full tickless can give higher performances in various cases but, depending on hardware, lower consistency.
|
||||||
@ -67,7 +70,7 @@ _kyber_disable=y
|
|||||||
|
|
||||||
### Enable multigenerational LRU
|
### Enable multigenerational LRU
|
||||||
# ATTENTION - one of three predefined values should be selected!
|
# ATTENTION - one of three predefined values should be selected!
|
||||||
# 'standard' - enable multigenerational LRU
|
# 'standard' - enable multigenerational LRU
|
||||||
# 'stats' - enable multigenerational LRU with stats
|
# 'stats' - enable multigenerational LRU with stats
|
||||||
# 'none' - disable multigenerational LRU
|
# 'none' - disable multigenerational LRU
|
||||||
_lru_config='standard'
|
_lru_config='standard'
|
||||||
@ -75,12 +78,6 @@ _lru_config='standard'
|
|||||||
## Enable DAMON
|
## Enable DAMON
|
||||||
_damon=y
|
_damon=y
|
||||||
|
|
||||||
### Enable SPECULATIVE_PAGE_FAULT
|
|
||||||
# ATTENTION - one of two predefined values should be selected!
|
|
||||||
# 'standard' - enable SPECULATIVE_PAGE_FAULT
|
|
||||||
# 'stats' - enable support SPECULATIVE_PAGE_FAULT with stats
|
|
||||||
_spf_config='standard'
|
|
||||||
|
|
||||||
## Enable Linux Random Number Generator
|
## Enable Linux Random Number Generator
|
||||||
_lrng_enable=y
|
_lrng_enable=y
|
||||||
|
|
||||||
@ -103,26 +100,28 @@ _disable_debug=y
|
|||||||
## Enable zram/zswap ZSTD compression
|
## Enable zram/zswap ZSTD compression
|
||||||
_zstd_compression=y
|
_zstd_compression=y
|
||||||
|
|
||||||
# Enable FULLCONENAT
|
|
||||||
_nf_cone=y
|
|
||||||
|
|
||||||
# Clang LTO mode, only available with the "llvm" compiler - options are "no", "full" or "thin".
|
# Clang LTO mode, only available with the "llvm" compiler - options are "no", "full" or "thin".
|
||||||
# "full: uses 1 thread for Linking, slow and uses more memory, theoretically with the highest performance gains."
|
# "full: uses 1 thread for Linking, slow and uses more memory, theoretically with the highest performance gains."
|
||||||
# "thin: uses multiple threads, faster and uses less memory, may have a lower runtime performance than Full."
|
# "thin: uses multiple threads, faster and uses less memory, may have a lower runtime performance than Full."
|
||||||
_use_llvm_lto=
|
_use_llvm_lto=
|
||||||
|
|
||||||
|
# KCFI is a proposed forward-edge control-flow integrity scheme for
|
||||||
|
# Clang, which is more suitable for kernel use than the existing CFI
|
||||||
|
# scheme used by CONFIG_CFI_CLANG. KCFI doesn't require LTO, doesn't
|
||||||
|
# alter function references to point to a jump table, and won't break
|
||||||
|
# function address equality.
|
||||||
|
# ATTENTION!: you do need a patched llvm for the usage of kcfi,
|
||||||
|
# you can find a patched llvm-git in the cachyos-repo's.
|
||||||
|
# The packagename is called "llvm-kcfi"
|
||||||
|
# ATTENTION!: This is very experimental and could fail and the compilation or have other bugs in the kernel
|
||||||
|
_use_kcfi=
|
||||||
|
|
||||||
# Build the zfs module builtin in to the kernel
|
# Build the zfs module builtin in to the kernel
|
||||||
_build_zfs=
|
_build_zfs=
|
||||||
|
|
||||||
# Enable bcachefs
|
# Enable bcachefs
|
||||||
_bcachefs=
|
_bcachefs=
|
||||||
|
|
||||||
# Enable aufsfs
|
|
||||||
_aufs=
|
|
||||||
|
|
||||||
# Enable spadefs
|
|
||||||
_spadfs=
|
|
||||||
|
|
||||||
if [ -n "$_use_llvm_lto" ]; then
|
if [ -n "$_use_llvm_lto" ]; then
|
||||||
pkgsuffix=cachyos-lto
|
pkgsuffix=cachyos-lto
|
||||||
pkgbase=linux-$pkgsuffix
|
pkgbase=linux-$pkgsuffix
|
||||||
@ -131,13 +130,13 @@ else
|
|||||||
pkgsuffix=cachyos
|
pkgsuffix=cachyos
|
||||||
pkgbase=linux-$pkgsuffix
|
pkgbase=linux-$pkgsuffix
|
||||||
fi
|
fi
|
||||||
_major=5.18
|
_major=5.19
|
||||||
_minor=15
|
_minor=0
|
||||||
#_minorc=$((_minor+1))
|
#_minorc=$((_minor+1))
|
||||||
#_rcver=rc8
|
#_rcver=rc8
|
||||||
pkgver=${_major}.${_minor}
|
pkgver=${_major}.${_minor}
|
||||||
_stable=${_major}.${_minor}
|
#_stable=${_major}.${_minor}
|
||||||
#_stable=${_major}
|
_stable=${_major}
|
||||||
#_stablerc=${_major}-${_rcver}
|
#_stablerc=${_major}-${_rcver}
|
||||||
_srcname=linux-${_stable}
|
_srcname=linux-${_stable}
|
||||||
#_srcname=linux-${_major}
|
#_srcname=linux-${_major}
|
||||||
@ -169,45 +168,53 @@ source=(
|
|||||||
"https://cdn.kernel.org/pub/linux/kernel/v${pkgver%%.*}.x/${_srcname}.tar.xz"
|
"https://cdn.kernel.org/pub/linux/kernel/v${pkgver%%.*}.x/${_srcname}.tar.xz"
|
||||||
"config"
|
"config"
|
||||||
"auto-cpu-optimization.sh"
|
"auto-cpu-optimization.sh"
|
||||||
"${_patchsource}/all/0001-cachyos-base-all.patch"
|
"${_patchsource}/all/0001-cachyos-base-all.patch")
|
||||||
)
|
## ZFS Support
|
||||||
if [ -n "$_build_zfs" ]; then
|
if [ -n "$_build_zfs" ]; then
|
||||||
source+=("git+https://github.com/openzfs/zfs.git#commit=98315be03600dee78f5c844ed4ef422098493a24")
|
source+=("git+https://github.com/openzfs/zfs.git#commit=17512aba0c33f73b74e5bd10f11e6d41c10f709f")
|
||||||
fi
|
fi
|
||||||
|
## BMQ Scheduler
|
||||||
if [ "$_cpusched" = "bmq" ]; then
|
if [ "$_cpusched" = "bmq" ]; then
|
||||||
source+=("${_patchsource}/sched/0001-prjc.patch")
|
source+=("${_patchsource}/sched/0001-prjc.patch")
|
||||||
fi
|
fi
|
||||||
|
## PDS Scheduler
|
||||||
if [ "$_cpusched" = "pds" ]; then
|
if [ "$_cpusched" = "pds" ]; then
|
||||||
source+=("${_patchsource}/sched/0001-prjc.patch")
|
source+=("${_patchsource}/sched/0001-prjc.patch")
|
||||||
fi
|
fi
|
||||||
|
## BORE Scheduler
|
||||||
if [ "$_cpusched" = "bore" ]; then
|
if [ "$_cpusched" = "bore" ]; then
|
||||||
source+=("${_patchsource}/sched/0001-bore-sched.patch")
|
source+=("${_patchsource}/sched/0001-bore.patch")
|
||||||
fi
|
fi
|
||||||
|
## CacULE Scheduler
|
||||||
if [ "$_cpusched" = "cacule" ]; then
|
if [ "$_cpusched" = "cacule" ]; then
|
||||||
source+=("${_patchsource}/sched/0001-cacULE-5.18-migrate.patch")
|
source+=("${_patchsource}/sched/0001-cacULE-cachy.patch")
|
||||||
fi
|
fi
|
||||||
|
## CacULE-RDB Scheduler
|
||||||
if [ "$_cpusched" = "cacule-rdb" ]; then
|
if [ "$_cpusched" = "cacule-rdb" ]; then
|
||||||
source+=("${_patchsource}/sched/0001-cacULE-5.18-migrate.patch")
|
source+=("${_patchsource}/sched/0001-cacULE-cachy.patch")
|
||||||
fi
|
fi
|
||||||
|
#ä TT Scheduler
|
||||||
if [ "$_cpusched" = "tt" ]; then
|
if [ "$_cpusched" = "tt" ]; then
|
||||||
source+=(
|
source+=("${_patchsource}/sched/0001-tt-cachy.patch")
|
||||||
"${_patchsource}/sched/0001-tt-cachy-5.18.patch")
|
|
||||||
fi
|
fi
|
||||||
|
## Hardened Patches with BORE Scheduler
|
||||||
if [ "$_cpusched" = "hardened" ]; then
|
if [ "$_cpusched" = "hardened" ]; then
|
||||||
source+=("${_patchsource}/sched/0001-bore-sched.patch"
|
source+=("${_patchsource}/sched/0001-bore-sched.patch"
|
||||||
"${_patchsource}/0001-hardening.patch")
|
"${_patchsource}/0001-hardening.patch")
|
||||||
fi
|
fi
|
||||||
|
## Kernel CFI Patch
|
||||||
|
if [ -n "$_use_kcfi" ]; then
|
||||||
|
source+=("${_patchsource}/misc/0001-kcfi.patch")
|
||||||
|
depends+=(llvm-git llvm-libs-git python)
|
||||||
|
BUILD_FLAGS=(
|
||||||
|
CC=clang
|
||||||
|
LD=ld.lld
|
||||||
|
LLVM=1
|
||||||
|
)
|
||||||
|
fi
|
||||||
|
## bcachefs Support
|
||||||
if [ -n "$_bcachefs" ]; then
|
if [ -n "$_bcachefs" ]; then
|
||||||
source+=("${_patchsource}/0001-bcachefs-after-lru.patch")
|
source+=("${_patchsource}/misc/0001-bcachefs-after-lru.patch")
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "$_aufs" ]; then
|
|
||||||
source+=("${_patchsource}/0001-aufs-20220620.patch")
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ -n "$_spadfs" ]; then
|
|
||||||
source+=("${_patchsource}/0001-spadfs-5.18-merge-v1.0.16.patch")
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
export KBUILD_BUILD_HOST=archlinux
|
export KBUILD_BUILD_HOST=archlinux
|
||||||
@ -278,7 +285,7 @@ prepare() {
|
|||||||
elif [ "$_cpusched" = "cfs" ]; then
|
elif [ "$_cpusched" = "cfs" ]; then
|
||||||
echo "Selecting Completely Fair Scheduler..."
|
echo "Selecting Completely Fair Scheduler..."
|
||||||
elif [ "$_cpusched" = "hardened" ]; then
|
elif [ "$_cpusched" = "hardened" ]; then
|
||||||
echo "Selecting hardened..."
|
echo "Selecting hardened patches with the BORE Scheduler..."
|
||||||
else
|
else
|
||||||
if [ -n "$_cpusched" ]; then
|
if [ -n "$_cpusched" ]; then
|
||||||
error "The value $_cpusched is invalid. Choose the correct one again."
|
error "The value $_cpusched is invalid. Choose the correct one again."
|
||||||
@ -479,32 +486,6 @@ prepare() {
|
|||||||
--set-str DEFAULT_TCP_CONG bbr2
|
--set-str DEFAULT_TCP_CONG bbr2
|
||||||
fi
|
fi
|
||||||
|
|
||||||
### Enable FULLCONENAT
|
|
||||||
if [ -n "$_nf_cone" ]; then
|
|
||||||
echo "Enabling FULLCONENAT..."
|
|
||||||
scripts/config --module IP_NF_TARGET_FULLCONENAT \
|
|
||||||
--module NETFILTER_XT_TARGET_FULLCONENAT
|
|
||||||
fi
|
|
||||||
|
|
||||||
### Select SPF config
|
|
||||||
if [ "$_spf_config" = "standard" ]; then
|
|
||||||
echo "Enabling SPECULATIVE_PAGE_FAULT..."
|
|
||||||
scripts/config --enable CONFIG_SPECULATIVE_PAGE_FAULT \
|
|
||||||
--disable CONFIG_SPECULATIVE_PAGE_FAULT_STATS
|
|
||||||
elif [ "$_spf_config" = "stats" ]; then
|
|
||||||
echo "Enabling SPECULATIVE_PAGE_FAULT with stats..."
|
|
||||||
scripts/config --enable CONFIG_SPECULATIVE_PAGE_FAULT \
|
|
||||||
--enable CONFIG_SPECULATIVE_PAGE_FAULT_STATS
|
|
||||||
else
|
|
||||||
if [ -n "$_spf_config" ]; then
|
|
||||||
error "The value $_spf_config is invalid. Choose the correct one again."
|
|
||||||
else
|
|
||||||
error "The value is empty. Choose the correct one again."
|
|
||||||
fi
|
|
||||||
error "Enabling SPECULATIVE_PAGE_FAULT failed!"
|
|
||||||
exit
|
|
||||||
fi
|
|
||||||
|
|
||||||
### Select LRU config
|
### Select LRU config
|
||||||
if [ "$_lru_config" = "standard" ]; then
|
if [ "$_lru_config" = "standard" ]; then
|
||||||
echo "Enabling multigenerational LRU..."
|
echo "Enabling multigenerational LRU..."
|
||||||
@ -616,12 +597,7 @@ prepare() {
|
|||||||
### Enable ZSTD swap/zram compression
|
### Enable ZSTD swap/zram compression
|
||||||
if [ -n "$_zstd_swap_compression" ]; then
|
if [ -n "$_zstd_swap_compression" ]; then
|
||||||
echo "Enabling zram ZSTD compression..."
|
echo "Enabling zram ZSTD compression..."
|
||||||
scripts/config --disable ZRAM_DEF_COMP_LZORLE \
|
scripts/config --disable CONFIG_ZSWAP_DEFAULT_ON \
|
||||||
--enable ZRAM_DEF_COMP_ZSTD \
|
|
||||||
--set-str ZRAM_DEF_COMP zstd \
|
|
||||||
--disable ZSWAP_COMPRESSOR_DEFAULT_LZ4 \
|
|
||||||
--enable ZSWAP_COMPRESSOR_DEFAULT_ZSTD \
|
|
||||||
--set-str ZSWAP_COMPRESSOR_DEFAULT zstd \
|
|
||||||
--enable ZRAM_ENTROPY \
|
--enable ZRAM_ENTROPY \
|
||||||
--set-val ZRAM_ENTROPY_THRESHOLD 100000
|
--set-val ZRAM_ENTROPY_THRESHOLD 100000
|
||||||
fi
|
fi
|
||||||
@ -694,9 +670,6 @@ prepare() {
|
|||||||
echo "Save configuration for later reuse..."
|
echo "Save configuration for later reuse..."
|
||||||
cat .config > "${startdir}/config-${pkgver}-${pkgrel}${pkgbase#linux}"
|
cat .config > "${startdir}/config-${pkgver}-${pkgrel}${pkgbase#linux}"
|
||||||
|
|
||||||
### Save configuration for later reuse
|
|
||||||
# cp -Tf ./.config "${startdir}/config-${pkgver}-${pkgrel}${pkgbase#linux}"
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
@ -861,8 +834,8 @@ for _p in "${pkgname[@]}"; do
|
|||||||
}"
|
}"
|
||||||
done
|
done
|
||||||
|
|
||||||
sha256sums=('69804febdc388a69dfb64493b7b58d402853de3a14144ea8db7fd67c30dcbe3c'
|
sha256sums=('ff240c579b9ee1affc318917de07394fc1c3bb49dac25ec1287370c2e15005a8'
|
||||||
'9b2cfc2cbf7015ec50d6f849fdf49c53a2d257d20a0988465759936db3aaf209'
|
'42d2127e3fb3bc96024c8af9d3eaead69007f64b1096d13767249bd9afeb043c'
|
||||||
'ce8bf7807b45a27eed05a5e1de5a0bf6293a3bbc2085bacae70cd1368f368d1f'
|
'ce8bf7807b45a27eed05a5e1de5a0bf6293a3bbc2085bacae70cd1368f368d1f'
|
||||||
'0b256630b9f79e776cf447a825dad88e5a6daf8693de35b2ff892e14b9212365'
|
'4575169c1ed71ddc0ae0d832d0c8df75b506f1bf6891b9166dbb23e628fbfb21'
|
||||||
'7a36fe0a53a644ade0ce85f08f9ca2ebaddd47876966b7cc9d4cae8844649271')
|
'0fe7f1698639df033709c6d32e651d378fc6e320dfc6387f8aee83d9ed0231a8')
|
||||||
|
Loading…
Reference in New Issue
Block a user