# Maintainer: Kyle De'Vir (QuartzDragon) # Contributor: Jan Alexander Steffens (heftig) ### BUILD OPTIONS # Set these variables to ANYTHING that is not null to enable them # CPU sched_yield_type - Choose what sort of yield sched_yield will perform # 0: No yield # 1: Yield only to better priority/deadline tasks # 2: Expire timeslice and recalculate deadline _sched_yield_type= # Tweak kernel options prior to a build via nconfig _makenconfig= # Optionally select a sub architecture by number if building in a clean chroot # Leaving this entry blank will require user interaction during the build # which will cause a failure to build if using makechrootpkg. Note that the # generic (default) option is 30. # # Note - the march=native option is unavailable by this method, use the nconfig # and manually select it. # # 1. AMD Opteron/Athlon64/Hammer/K8 (MK8) # 2. AMD Opteron/Athlon64/Hammer/K8 with SSE3 (MK8SSE3) # 3. AMD 61xx/7x50/PhenomX3/X4/II/K10 (MK10) # 4. AMD Barcelona (MBARCELONA) # 5. AMD Bobcat (MBOBCAT) # 6. AMD Jaguar (MJAGUAR) # 7. AMD Bulldozer (MBULLDOZER) # 8. AMD Piledriver (MPILEDRIVER) # 9. AMD Steamroller (MSTEAMROLLER) # 10. AMD Excavator (MEXCAVATOR) # 11. AMD Zen (MZEN) # 12. AMD Zen 2 (MZEN2) # 13. Intel P4 / older Netburst based Xeon (MPSC) # 14. Intel Atom (MATOM) # 15. Intel Core 2 (MCORE2) # 16. Intel Nehalem (MNEHALEM) # 17. Intel Westmere (MWESTMERE) # 18. Intel Silvermont (MSILVERMONT) # 19. Intel Goldmont (MGOLDMONT) # 20. Intel Goldmont Plus (MGOLDMONTPLUS) # 21. Intel Sandy Bridge (MSANDYBRIDGE) # 22. Intel Ivy Bridge (MIVYBRIDGE) # 23. Intel Haswell (MHASWELL) # 24. Intel Broadwell (MBROADWELL) # 25. Intel Skylake (MSKYLAKE) # 26. Intel Skylake X (MSKYLAKEX) # 27. Intel Cannon Lake (MCANNONLAKE) # 28. Intel Ice Lake (MICELAKE) # 29. Intel Cascade Lake (MCASCADELAKE) # 30. Generic-x86-64 (GENERIC_CPU) # 31. Native optimizations autodetected by GCC (MNATIVE) _subarch= # Compile ONLY used modules to VASTLY reduce the number of modules built # and the build time. # # To keep track of which modules are needed for your specific system/hardware, # give module_db script a try: https://aur.archlinux.org/packages/modprobed-db # This PKGBUILD read the database kept if it exists # # More at this wiki page ---> https://wiki.archlinux.org/index.php/Modprobed-db _localmodcfg= pkgbase=linux-pds pkgver=5.3.8.1 pkgrel=1 _srcver_tag=${pkgver%.*}-arch${pkgver##*.} url="https://git.archlinux.org/linux.git/log/?h=v$_srcver_tag" arch=(x86_64) license=(GPL2) makedepends=( xmlto kmod inetutils bc libelf python-sphinx python-sphinx_rtd_theme graphviz imagemagick git ) options=('!strip') _reponame="linux" _repo_url="https://git.archlinux.org/$_reponame" _reponame_gcc_patch="kernel_gcc_patch" _repo_url_gcc_patch="https://github.com/graysky2/$_reponame_gcc_patch" _gcc_patch_name="enable_additional_cpu_optimizations_for_gcc_v9.1+_kernel_v4.13+.patch" _pkgdesc_extra="~ featuring Alfred Chen's PDS CPU scheduler, rebased by TkG" source=( "git+$_repo_url?signed#tag=v$_srcver_tag" "git+$_repo_url_gcc_patch" config # the main kernel config file 01-Undead-PDS-0.99o-rebase-by-TkG.patch 02-Glitched-PDS-by-TkG.patch ) validpgpkeys=( 'ABAF11C65A2970B130ABE3C479BE3E4300411886' # Linus Torvalds '647F28654894E3BD457199BE38DBBDC86092693E' # Greg Kroah-Hartman '8218F88849AAC522E94CF470A5E9288C4FA415FA' # Jan Alexander Steffens (heftig) ) sha512sums=('SKIP' 'SKIP' '82827018d203ce117c927a0f8a80d7e32819b9f36fd08d6a9bb88ee9077ba025ac357afa1146c3ea07b8d294af4bb2eadcf41e51902e41e4210bd0abba96f885' '2aef8b8949fec12d237facc57d5feddf0e7c1c878c94fb4eb8a845c110d5cfcc83492e73475de04ce98069e9ab1bb6b4a0a4559d445fbf264442dd8b0af9a8f1' 'a5ff06602840327e10d623c195b7e1676f967e5aa04de04e9435766fab2b596a44da21f808bfdd632dcf64800456337b7b4c03de2a268980238a310b3644ceae') export KBUILD_BUILD_HOST=archlinux export KBUILD_BUILD_USER=$pkgbase export KBUILD_BUILD_TIMESTAMP="@${SOURCE_DATE_EPOCH:-$(date +%s)}" prepare() { cd $_reponame msg2 "Setting version..." scripts/setlocalversion --save-scmversion echo "-$pkgrel" > localversion.10-pkgrel echo "${pkgbase#linux}" > localversion.20-pkgname # https://github.com/graysky2/kernel_gcc_patch msg2 "Patching to enabled additional gcc CPU optimizatons..." patch -Np1 -i "$srcdir/$_reponame_gcc_patch/$_gcc_patch_name" # From https://github.com/Tk-Glitch/PKGBUILDS/tree/master/linux52-tkg/linux52-tkg-patches msg2 "Patching with Undead PDS 0.99o patches, rebased to 5.2 by TkG" patch -Np1 -i "$srcdir/01-Undead-PDS-0.99o-rebase-by-TkG.patch" patch -Np1 -i "$srcdir/02-Glitched-PDS-by-TkG.patch" msg2 "Setting config..." cp ../config .config if [ -n "$_subarch" ]; then yes "$_subarch" | make oldconfig else make prepare 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 msg2 "Running Steven Rostedt's make localmodconfig now" make LSMOD=$HOME/.config/modprobed.db localmodconfig else msg2 "No modprobed.db data found" exit fi fi if [ -z "$_sched_yield_type" ]; then plain "" plain "CPU sched_yield_type - Choose what sort of yield sched_yield will perform." plain "" plain "For PDS:" plain "0: No yield." plain "1: Yield only to better priority/deadline tasks." plain "2: Expire timeslice and recalculate deadline." read -rp "`echo $'\n> 0 (Recommended option for gaming on PDS - "tkg" default)\n 1 (Default, but can lead to stability issues on some platforms)\n 2 (Usually the slowest option for PDS, not recommended unless you have issues with 0 or 1)\n [0-2?]: '`" _sched_yield_type; fi if [ "$_sched_yield_type" == "1" ]; then msg2 "Using default CPU sched yield type (1)" elif [ "$_sched_yield_type" == "2" ]; then sed -i -e 's/int sched_yield_type __read_mostly = 1;/int sched_yield_type __read_mostly = 2;/' ./kernel/sched/pds.c else sed -i -e 's/int sched_yield_type __read_mostly = 1;/int sched_yield_type __read_mostly = 0;/' ./kernel/sched/pds.c fi # do not run 'make olddefconfig' as it sets default options yes "" | make config >/dev/null make -s kernelrelease > version msg2 "Prepared %s version %s" "$pkgbase" "$( "$startdir/config.last" } build() { cd $_reponame make bzImage modules htmldocs } _package() { pkgdesc="The ${pkgbase/linux/Linux} kernel and modules $_pkgdesc_extra" depends=( coreutils kmod initramfs thrash-protect ) optdepends=( "crda: to set the correct wireless channels of your country" "linux-firmware: firmware images needed for some devices" ) provides=("$pkgbase=$pkgver") cd $_reponame local kernver="$(