5.15.10-2

This commit is contained in:
P. Jung 2021-12-19 18:10:46 +00:00
parent c4319107d3
commit bb19a57f50
2 changed files with 14 additions and 32 deletions

View File

@ -1,7 +1,7 @@
pkgbase = linux-cachyos
pkgdesc = Linux CFS scheduler Kernel by CachyOS and with some other patches and other improvements
pkgver = 5.15.9
pkgrel = 1
pkgver = 5.15.10
pkgrel = 2
url = https://github.com/CachyOS/linux-cachyos
arch = x86_64
arch = x86_64_v3
@ -19,11 +19,10 @@ pkgbase = linux-cachyos
makedepends = tar
makedepends = xz
options = !strip
source = https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.9.tar.xz
source = https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.15.10.tar.xz
source = config
source = https://raw.githubusercontent.com/ptr1337/kernel-patches/master/5.15/0001-arch-patches.patch
source = https://raw.githubusercontent.com/ptr1337/kernel-patches/master/5.15/0001-cfi.patch
source = https://raw.githubusercontent.com/ptr1337/kernel-patches/master/5.15/0001-page-table-check.patch
source = https://raw.githubusercontent.com/ptr1337/kernel-patches/master/5.15/0001-lru-patches.patch
source = https://raw.githubusercontent.com/ptr1337/kernel-patches/master/5.15/AMD/0001-amdpstate.patch
source = https://raw.githubusercontent.com/ptr1337/kernel-patches/master/5.15/AMD/amd-sched.patch
@ -52,11 +51,10 @@ pkgbase = linux-cachyos
source = https://raw.githubusercontent.com/ptr1337/kernel-patches/master/5.15/0001-zstd.patch
source = https://raw.githubusercontent.com/ptr1337/kernel-patches/master/5.15/0001-xfs-backport.patch
source = auto-cpu-optimization.sh
md5sums = 5b04a1db6305c993d7f55db334a2b415
md5sums = b661040d70e3c6da4844dc4ecbf30555
md5sums = d97e86d9464dd34683f67de4d4a595c0
md5sums = 2627c6fcd9760b0e7a3553500db0a7e1
md5sums = e3fa8507aed6ef3ce37e62f18fe9b7e1
md5sums = 152706f6ebbe9917c6a5955cd5447344
md5sums = 4bfca774a71e7228f5b8bb31660521af
md5sums = 4b530f55cb9ce472fa539abc69299a17
md5sums = dccfe71705b24d3fb1f51aaf2016216d
@ -66,15 +64,15 @@ pkgbase = linux-cachyos
md5sums = 56ceaed8bfb44eca93298ccc5fe11ca7
md5sums = 67764a5824b567b49bcce19c01d4e1b3
md5sums = 299b176cbfc1b386d74406387e9e2d6b
md5sums = 6d0f581b0edcf0a11308f3e3cde5eeaf
md5sums = 68e3ce199650ac9530ca8a30c920da99
md5sums = 41887f2f959068e41756f4c39671ca79
md5sums = b04c8a3f01b3dfba1410e2c26ec7d975
md5sums = 8cf507777e20cd4d75a0627eef10c10d
md5sums = 6038177c72982533035309fcd6df208a
md5sums = 2a13aa40945c9910f7ad20a429442793
md5sums = 8bda7327ae759b1b52e3b617952bd964
md5sums = 8c354c3d1962ec6785db7f0c3fbbab03
md5sums = 9b6369bc4c58ad0d9195b5c204ed4b8a
md5sums = c6efda5716e4ff79ebdbc963bebd851a
md5sums = 480c6bb9db4842114787f66ad5a68404
md5sums = 08c84362cb916b30d9c77e35b1b3bc54
md5sums = 56fdf3562b041c0408d9751b7e447977
md5sums = b09b84168822521426f197610727618b
@ -99,5 +97,5 @@ pkgname = linux-cachyos
pkgname = linux-cachyos-headers
pkgdesc = Headers and scripts for building modules for the Linux CFS scheduler Kernel by CachyOS and with some other patches and other improvements
depends = linux-cachyos=5.15.9
depends = linux-cachyos=5.15.10
depends = pahole

View File

@ -69,8 +69,6 @@ _lru_enable=y
### Enable DAMON
_damon=
_use_page_check=y
# experimental;
# User Managed Concurrency Groups is an M:N threading toolkit that allows
# constructing user space schedulers designed to efficiently manage
@ -129,13 +127,13 @@ else
pkgbase=linux-cachyos
fi
_major=5.15
_minor=9
_minor=10
pkgver=${_major}.${_minor}
_srcname=linux-${pkgver}
arch=(x86_64 x86_64_v3)
pkgdesc='Linux CFS scheduler Kernel by CachyOS and with some other patches and other improvements'
_srcname=linux-${pkgver}
pkgrel=1
pkgrel=2
arch=('x86_64' 'x86_64_v3')
url="https://github.com/CachyOS/linux-cachyos"
license=('GPL2')
@ -151,7 +149,6 @@ source=(#"https://www.kernel.org/pub/linux/kernel/v5.x/${_srcname}.tar.xz"
"config"
"${_patchsource}/0001-arch-patches.patch"
"${_patchsource}/0001-cfi.patch"
"${_patchsource}/0001-page-table-check.patch"
"${_patchsource}/0001-lru-patches.patch"
"${_patchsource}/AMD/0001-amdpstate.patch"
"${_patchsource}/AMD/amd-sched.patch"
@ -359,18 +356,6 @@ prepare() {
scripts/config --enable CONFIG_DAMON_RECLAIM
fi
if [ -n "$_use_page_check" ]; then
echo "Enable Page Table Check"
scripts/config --enable ARCH_SUPPORTS_PAGE_TABLE_CHECK
scripts/config --enable CONFIG_PAGE_TABLE_CHECK
scripts/config --enable CONFIG_PAGE_TABLE_CHECK_ENFORCED
fi
if [ -n "$_enable_umcg" ]; then
echo "Enable Page Table Check"
scripts/config --enable CONFIG_HAVE_UMCG
scripts/config --enable CONFIG_UMCG
fi
### Enable Linux Random Number Generator
if [ -n "$_lrng_enable" ]; then
echo "Enabling Linux Random Number Generator ..."
@ -654,11 +639,10 @@ for _p in "${pkgname[@]}"; do
}"
done
md5sums=('5b04a1db6305c993d7f55db334a2b415'
md5sums=('b661040d70e3c6da4844dc4ecbf30555'
'd97e86d9464dd34683f67de4d4a595c0'
'2627c6fcd9760b0e7a3553500db0a7e1'
'e3fa8507aed6ef3ce37e62f18fe9b7e1'
'152706f6ebbe9917c6a5955cd5447344'
'4bfca774a71e7228f5b8bb31660521af'
'4b530f55cb9ce472fa539abc69299a17'
'dccfe71705b24d3fb1f51aaf2016216d'
@ -668,15 +652,15 @@ md5sums=('5b04a1db6305c993d7f55db334a2b415'
'56ceaed8bfb44eca93298ccc5fe11ca7'
'67764a5824b567b49bcce19c01d4e1b3'
'299b176cbfc1b386d74406387e9e2d6b'
'6d0f581b0edcf0a11308f3e3cde5eeaf'
'68e3ce199650ac9530ca8a30c920da99'
'41887f2f959068e41756f4c39671ca79'
'b04c8a3f01b3dfba1410e2c26ec7d975'
'8cf507777e20cd4d75a0627eef10c10d'
'6038177c72982533035309fcd6df208a'
'2a13aa40945c9910f7ad20a429442793'
'8bda7327ae759b1b52e3b617952bd964'
'8c354c3d1962ec6785db7f0c3fbbab03'
'9b6369bc4c58ad0d9195b5c204ed4b8a'
'c6efda5716e4ff79ebdbc963bebd851a'
'480c6bb9db4842114787f66ad5a68404'
'08c84362cb916b30d9c77e35b1b3bc54'
'56fdf3562b041c0408d9751b7e447977'
'b09b84168822521426f197610727618b'