# Maintainer: Kyle De'Vir (QuartzDragon) # Contributor: Jan Alexander Steffens (heftig) ### BUILD OPTIONS # Set these variables to ANYTHING that is not null to enable them # 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-bcachefs-git pkgver=v6.1.1.arch1.r1140607.3684119f4f18 pkgrel=1 pkgdesc="Linux" _srcver_tag=v6.1.1.arch1 url="https://github.com/koverstreet/bcachefs" arch=(x86_64) license=(GPL2) makedepends=( bc libelf pahole cpio perl tar xz xmlto python-sphinx python-sphinx_rtd_theme graphviz imagemagick texlive-latexextra git ) options=('!strip') _reponame="linux-bcachefs" _repo_url="https://github.com/koverstreet/bcachefs.git" _reponame_arch="linux-archlinux" _repo_url_arch="https://github.com/archlinux/linux.git" _reponame_upstream="linux" _repo_url_upstream="https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git" _reponame_kernel_patch="kernel_compiler_patch" _repo_url_kernel_patch="https://github.com/graysky2/${_reponame_kernel_patch}.git" _kernel_patch_name="more-uarches-for-kernel-5.17+.patch" _pkgdesc_extra="~ featuring Kent Overstreet's bcachefs filesystem" source=( "${_reponame}::git+${_repo_url}#branch=master" "${_reponame_arch}::git+${_repo_url_arch}" #"${_reponame_upstream}::git+${_repo_url_upstream}" "git+${_repo_url_kernel_patch}" config # kernel config file ) validpgpkeys=( "ABAF11C65A2970B130ABE3C479BE3E4300411886" # Linus Torvalds "647F28654894E3BD457199BE38DBBDC86092693E" # Greg Kroah-Hartman "A2FF3A36AAA56654109064AB19802F8B0D70FC30" # Jan Alexander Steffens (heftig) "C7E7849466FE2358343588377258734B41C31549" # David Runge ) sha512sums=('SKIP' 'SKIP' 'SKIP' '38f98f10f634966bcbe3470a92e562e2789ae9179e54e8d8983c8dd08bbba1667a3714224a0de22f1611e0f89f406c50e0ff8efb1b9b79a0e7bdd40d05165b82') export KBUILD_BUILD_HOST=archlinux export KBUILD_BUILD_USER=$pkgbase export KBUILD_BUILD_TIMESTAMP="$(date -Ru${SOURCE_DATE_EPOCH:+d @$SOURCE_DATE_EPOCH})" prepare() { cd "$srcdir/$_reponame" msg2 "Setting version..." scripts/setlocalversion --save-scmversion echo "-$pkgrel" > localversion.10-pkgrel echo "${pkgbase#linux}" > localversion.20-pkgname msg2 "Fetch and merge stable tag from Arch vanilla kernel repository..." git remote add arch_stable "${srcdir}/${_reponame_arch}" || true git fetch arch_stable "${_srcver_tag%.*}-${_srcver_tag##*.}" git merge --no-edit --no-commit FETCH_HEAD #msg2 "Fetch and merge tag ${_srcver_tag//.arch*/} from Linux stable upstream repository..." #git remote add upstream_stable "${srcdir}/${_reponame_upstream}" || true #git fetch upstream_stable $v{_srcver_tag//.arch*/} #git merge --no-edit --no-commit FETCH_HEAD FullPatchesArray=( $_reponame_kernel_patch/$_kernel_patch_name ) for MyPatch in "${FullPatchesArray[@]}" do msg2 "Applying patch $MyPatch..." patch -Np1 -i "$srcdir/$MyPatch" done 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 # do not run 'make olddefconfig' as it sets default options yes "" | make config >/dev/null msg2 "Showing config diff" diff -u ../config .config || : make -s kernelrelease > version msg2 "Prepared $pkgbase version $( "$startdir/config.last" } pkgver() { cd "${srcdir}/${_reponame}" printf "%s.r%s.%s" "${_srcver_tag//-/.}" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } build() { cd $_reponame make all make htmldocs } _package() { pkgdesc="The $pkgdesc kernel and modules $_pkgdesc_extra" depends=( coreutils kmod initramfs wireless-regdb linux-firmware bcachefs-tools-git ) provides=( VIRTUALBOX-GUEST-MODULES WIREGUARD-MODULE KSMBD-MODULE ) replaces=( virtualbox-guest-modules-arch wireguard-arch ) cd $_reponame local kernver="$(