# Maintainer: graysky # Contributor: Jan Alexander Steffens (heftig) ### BUILD OPTIONS # Any/all of the next three variables may be set to ANYTHING # that is not null to enable their respective build options # Tweak kernel options prior to a build via nconfig _makenconfig= # Only compile select modules to reduce the number of modules built # # To keep track of which modules are needed for your specific system/hardware, # give module_db a try: https://aur.archlinux.org/packages/modprobed-db # This PKGBUILD reads the database kept if it exists # More at this wiki page ---> https://wiki.archlinux.org/index.php/Modprobed-db _localmodcfg= # Compile using clang rather than gcc _clangbuild= # Optionally select a sub architecture by number or leave blank which will # require user interaction during the build. Note that the generic (default) # option is 39. _subarch= # 1. AMD Opteron/Athlon64/Hammer/K8 (MK8) # 2. AMD Opteron/Athlon64/Hammer/K8 with SSE3 (MK8SSE3) (NEW) # 3. AMD 61xx/7x50/PhenomX3/X4/II/K10 (MK10) (NEW) # 4. AMD Barcelona (MBARCELONA) (NEW) # 5. AMD Bobcat (MBOBCAT) (NEW) # 6. AMD Jaguar (MJAGUAR) (NEW) # 7. AMD Bulldozer (MBULLDOZER) (NEW) # 8. AMD Piledriver (MPILEDRIVER) (NEW) # 9. AMD Steamroller (MSTEAMROLLER) (NEW) # 10. AMD Excavator (MEXCAVATOR) (NEW) # 11. AMD Zen (MZEN) (NEW) # 12. AMD Zen 2 (MZEN2) (NEW) # 13. AMD Zen 3 (MZEN3) (NEW) # 14. AMD Zen 4 (MZEN4) (NEW) # 15. Intel P4 / older Netburst based Xeon (MPSC) # 16. Intel Core 2 (MCORE2) # 17. Intel Atom (MATOM) # 18. Intel Nehalem (MNEHALEM) (NEW) # 19. Intel Westmere (MWESTMERE) (NEW) # 20. Intel Silvermont (MSILVERMONT) (NEW) # 21. Intel Goldmont (MGOLDMONT) (NEW) # 22. Intel Goldmont Plus (MGOLDMONTPLUS) (NEW) # 23. Intel Sandy Bridge (MSANDYBRIDGE) (NEW) # 24. Intel Ivy Bridge (MIVYBRIDGE) (NEW) # 25. Intel Haswell (MHASWELL) (NEW) # 26. Intel Broadwell (MBROADWELL) (NEW) # 27. Intel Skylake (MSKYLAKE) (NEW) # 28. Intel Skylake X (MSKYLAKEX) (NEW) # 29. Intel Cannon Lake (MCANNONLAKE) (NEW) # 30. Intel Ice Lake (MICELAKE) (NEW) # 31. Intel Cascade Lake (MCASCADELAKE) (NEW) # 32. Intel Cooper Lake (MCOOPERLAKE) (NEW) # 33. Intel Tiger Lake (MTIGERLAKE) (NEW) # 34. Intel Sapphire Rapids (MSAPPHIRERAPIDS) (NEW) # 35. Intel Rocket Lake (MROCKETLAKE) (NEW) # 36. Intel Alder Lake (MALDERLAKE) (NEW) # 37. Intel Raptor Lake (MRAPTORLAKE) (NEW) # 38. Intel Meteor Lake (MMETEORLAKE) (NEW) # 39. Generic-x86-64 (GENERIC_CPU) # 40. Generic-x86-64-v2 (GENERIC_CPU2) (NEW) # 41. Generic-x86-64-v3 (GENERIC_CPU3) (NEW) # 42. Generic-x86-64-v4 (GENERIC_CPU4) (NEW) # 43. Intel-Native optimizations autodetected by the compiler (MNATIVE_INTEL) (NEW) # 44. AMD-Native optimizations autodetected by the compiler (MNATIVE_AMD) (NEW) ### IMPORTANT: Do no edit below this line unless you know what you're doing pkgbase=linux-ck pkgver=6.4.12 pkgrel=1 arch=(x86_64) url="https://wiki.archlinux.org/index.php/Linux-ck" license=(GPL2) makedepends=( bc cpio gettext git libelf pahole python perl tar xz ) [[ -n "$_clangbuild" ]] && makedepends+=(clang llvm lld python) options=('!strip') # https://ck-hack.blogspot.com/2021/08/514-and-future-of-muqss-and-ck-once.html # acknowledgment to xanmod for initially keeping the hrtimer patches up to date _ckhrtimer=linux-6.4.y _commit=2870d6ac146aa658af60bb18a9c7503efe5992d4 _gcc_more_v=20221217 source=( "https://www.kernel.org/pub/linux/kernel/v6.x/linux-$pkgver.tar".{xz,sign} config # the main kernel config file "more-uarches-$_gcc_more_v.tar.gz::https://github.com/graysky2/kernel_compiler_patch/archive/$_gcc_more_v.tar.gz" "ck-hrtimer-$_commit.tar.gz::https://github.com/graysky2/linux-patches/archive/$_commit.tar.gz" 0001-ZEN-Add-sysctl-and-CONFIG-to-disallow-unprivileged-C.patch 0002-drivers-firmware-skip-simpledrm-if-nvidia-drm.modese.patch 0003-tpm-Don-t-make-vendor-check-required-for-probe.patch 0004-sphinx-kfigure.py-Convert-outdir-to-str-before-using.patch ) validpgpkeys=( ABAF11C65A2970B130ABE3C479BE3E4300411886 # Linus Torvalds 647F28654894E3BD457199BE38DBBDC86092693E # Greg Kroah-Hartman ) sha256sums=('cca91be956fe081f8f6da72034cded96fe35a50be4bfb7e103e354aa2159a674' 'SKIP' 'dad89a5db7c4e19ae29c60861000f3669e86c2e957d445a675596c1e85a57464' 'f1d586e111932890ad5e0df15d092fb9b3f87bae4ea17812aae9b0ec98fe2db0' 'ed0b8773d66079198edd1ecdbe0564d6ad33c641e82d85375e50a2d9e0275144' '26932226873903df3e4c330581b0112e4817ecb55c60bebc969f8aeba440a7f7' 'ca8e9ae6b10b394f71314dcbc381832d5c2ab654aa1c4bd24a25a0ba3588c3a3' '83dec929306e9dc54d8f786866a478ee530912ba722479d6dbfb099d5023a7cb' '65b6e434abc21c29a33a4d73dee40d33679f04ee740ded8fe88c320d1248055c') _make() { test -s version make KERNELRELEASE="$( localversion.10-pkgrel echo "${pkgbase#linux}" > localversion.20-pkgname make defconfig make -s kernelrelease > version make mrproper local src for src in "${source[@]}"; do src="${src%%::*}" src="${src##*/}" [[ $src = 0*.patch ]] || continue echo "Applying patch $src..." patch -Np1 < "../$src" done echo "Setting config..." cp ../config .config # https://bbs.archlinux.org/viewtopic.php?pid=1824594#p1824594 scripts/config --enable CONFIG_PSI_DEFAULT_DISABLED # https://bbs.archlinux.org/viewtopic.php?pid=1863567#p1863567 scripts/config --disable CONFIG_LATENCYTOP scripts/config --disable CONFIG_SCHED_DEBUG # FS#66613 # https://bugzilla.kernel.org/show_bug.cgi?id=207173#c6 scripts/config --disable CONFIG_KVM_WERROR # ck recommends 1000 Hz tick and the hrtimer patches in lieu of ck1 scripts/config --enable CONFIG_HZ_1000 # these are ck's htrimer patches echo "Patching with ck hrtimer patches..." for i in ../linux-patches-"$_commit"/"$_ckhrtimer"/ck-hrtimer/0*.patch; do patch -Np1 -i $i done if [[ -n "$_clangbuild" ]]; then scripts/config -e LTO_CLANG_THIN export _LLVM=1 export _LLVM_IAS=$_LLVM fi # non-interactively apply ck1 default options # this isn't redundant if we want a clean selection of subarch below make LLVM=$_LLVM LLVM_IAS=$_LLVM olddefconfig diff -u ../config .config || : # https://github.com/graysky2/kernel_gcc_patch # make sure to apply after olddefconfig to allow the next section echo "Patching to enable GCC optimization for other uarchs..." patch -Np1 -i "$srcdir/kernel_compiler_patch-$_gcc_more_v/more-uarches-for-kernel-5.17+.patch" if [ -n "$_subarch" ]; then # user wants a subarch so apply choice defined above interactively via 'yes' yes "$_subarch" | make LLVM=$_LLVM LLVM_IAS=$_LLVM oldconfig else # no subarch defined so allow user to pick one make LLVM=$_LLVM LLVM_IAS=$_LLVM oldconfig fi ### Optionally load needed modules for the make localmodconfig # See https://aur.archlinux.org/packages/modprobed-db if [ -n "$_localmodcfg" ]; then if [ -f $HOME/.config/modprobed.db ]; then echo "Running Steven Rostedt's make localmodconfig now" make LLVM=$_LLVM LLVM_IAS=$_LLVM LSMOD="$HOME/.config/modprobed.db" localmodconfig else echo "No modprobed.db data found" exit fi fi echo "Prepared $pkgbase version $( "${startdir}/config.last" # uncomment if you want to build with distcc ### sed -i '/HAVE_GCC_PLUGINS/d' arch/x86/Kconfig } build() { cd linux-${pkgver} make LLVM=$_LLVM LLVM_IAS=$_LLVM all } _package() { pkgdesc="The Linux kernel and modules with ck's hrtimer patches" depends=( coreutils initramfs kmod ) optdepends=( 'wireless-regdb: to set the correct wireless channels of your country' 'linux-firmware: firmware images needed for some devices' ) provides=( KSMBD-MODULE VIRTUALBOX-GUEST-MODULES WIREGUARD-MODULE ) replaces=( virtualbox-guest-modules-arch wireguard-arch ) #groups=('ck-generic') cd linux-${pkgver} local modulesdir="$pkgdir/usr/lib/modules/$(