# Maintainer: Peter Jung ptr1337 # Maintainer: Piotr Gorski # Maintainer: Vasiliy Stelmachenok # Contributor: Jan Alexander Steffens (heftig) # Contributor: Tobias Powalowski # Contributor: Thomas Baechler ### BUILD OPTIONS # Set these variables to ANYTHING that is not null or choose proper variable to enable them ### Selecting CachyOS config : "${_cachy_config:=yes}" ### Selecting the CPU scheduler # ATTENTION - only one of the following values can be selected: # 'bore' - select 'Burst-Oriented Response Enhancer' # 'bmq' - select 'BMQ Scheduler' # 'hardened' - select 'BORE Scheduler hardened' ## kernel with hardened config and hardening patches with the bore scheduler # 'cachyos' - select 'CachyOS Default Scheduler (EEVDF)' # 'eevdf' - select 'EEVDF Scheduler' # 'rt' - select EEVDF, but includes a series of realtime patches # 'rt-bore' - select Burst-Oriented Response Enhancer, but includes a series of realtime patches : "${_cpusched:=cachyos}" ### Tweak kernel options prior to a build via nconfig : "${_makenconfig:=no}" ### Tweak kernel options prior to a build via xconfig : "${_makexconfig:=no}" # Compile ONLY used modules to VASTLYreduce 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:=no}" # Path to the list of used modules : "${_localmodcfg_path:="$HOME/.config/modprobed.db"}" # Use the current kernel's .config file # Enabling this option will use the .config of the RUNNING kernel rather than # the ARCH defaults. Useful when the package gets updated and you already went # through the trouble of customizing your config options. NOT recommended when # a new kernel is released, but again, convenient for package bumps. : "${_use_current:=no}" ### Enable KBUILD_CFLAGS -O3 : "${_cc_harder:=yes}" ### Set performance governor as default : "${_per_gov:=no}" ### Enable TCP_CONG_BBR3 : "${_tcp_bbr3:=no}" ### Running with a 1000HZ, 750Hz, 600 Hz, 500Hz, 300Hz, 250Hz and 100Hz tick rate : "${_HZ_ticks:=1000}" ## Choose between periodic, idle or full ### Full tickless can give higher performances in various cases but, depending on hardware, lower consistency. : "${_tickrate:=full}" ## Choose between full, lazy or dynamic # Full: Makes all non-critical kernel code preemptible to reduce latency # Lazy: Same as full but instead of preempting immediately it waits for signals from the scheduler # in an attempt to boost throughput. # In practice, this doesn't seem to perform well as both throughput and latency suffer # compared to full. : "${_preempt:=full}" ### Transparent Hugepages # ATTENTION - one of two predefined values should be selected! # 'always' - always enable THP # 'madvise' - madvise, prevent applications from allocating more memory resources than necessary # More infos here: # https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/performance_tuning_guide/sect-red_hat_enterprise_linux-performance_tuning_guide-configuring_transparent_huge_pages : "${_hugepage:=always}" # CPU compiler optimizations - Defaults to native if left empty # - "native" (use compiler autodetection) # - "zen4" (Use znver4 compiler optimizations) # - "generic" (kernel's default - to share the package between machines with different CPU µarch as long as they are x86-64) : "${_processor_opt:=}" # Clang LTO mode, only available with the "llvm" compiler - options are "none", "full" or "thin". # ATTENTION - one of three predefined values should be selected! # "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-dist: Similar to thin, but uses a distributed model rather than in-process: https://discourse.llvm.org/t/rfc-distributed-thinlto-build-for-kernel/85934" # "none: disable LTO : "${_use_llvm_lto:=thin}" # Use suffix -lto only when requested by the user # yes - enable -lto suffix # no - disable -lto suffix # https://github.com/CachyOS/linux-cachyos/issues/36 : "${_use_lto_suffix:=no}" # Use suffix -gcc when requested by the user # Enabled by default to show the difference between LTO kernels and GCC kernels : "${_use_gcc_suffix:=yes}" # 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. : "${_use_kcfi:=no}" # Build the zfs module in to the kernel # WARNING: The ZFS module doesn't build with selected RT sched due to licensing issues. # If you use ZFS, refrain from building the RT kernel : "${_build_zfs:=no}" # Builds the open nvidia module and package it into a own base # This does replace the requirement of nvidia-open-dkms # Use this only if you have Turing+ GPU : "${_build_nvidia_open:=no}" # Builds the r8125 module and package it into its own package # Replaces requirement for r8125-dkms : "${_build_r8125:=no}" # Build a debug package with non-stripped vmlinux : "${_build_debug:=no}" # Enable AUTOFDO_CLANG for the first compilation to create a kernel, which can be used for profiling # Workflow: # https://cachyos.org/blog/2411-kernel-autofdo/ # 1. Compile Kernel with _autofdo=yes and _build_debug=yes # 2. Boot the kernel in QEMU or on your system, see Workload # 3. Profile the kernel and convert the profile, see Generating the Profile for AutoFDO # 4. Put the profile into the sourcedir # 5. Run kernel build again with the _autofdo_profile_name path to profile specified : "${_autofdo:=no}" # Name for the AutoFDO profile : "${_autofdo_profile_name:=}" # Propeller should be applied, after the kernel is optimized with AutoFDO # Workflow: # 1. Proceed with above AutoFDO Optimization, but enable at the final compilation also _propeller # 2. Boot into the AutoFDO Kernel and profile it # 3. Convert the profile into the propeller profile, example: # create_llvm_prof --binary=/usr/src/debug/linux-cachyos-rc/vmlinux --profile=propeller.data --format=propeller --propeller_output_module_name --out=propeller_cc_profile.txt --propeller_symorder=propeller_ld_profile.txt # 4. Place the propeller_cc_profile.txt and propeller_ld_profile.txt into the srcdir # 5. Enable _propeller_prefix : "${_propeller:=no}" # Enable this after the profiles have been generated : "${_propeller_profiles:=no}" # ATTENTION: Do not modify after this line _is_lto_kernel() { [[ "$_use_llvm_lto" = "thin" || "$_use_llvm_lto" = "full" || "$_use_llvm_lto" = "thin-dist" ]] return $? } _is_ci_build() { [[ -n "$CI" || -n "$GITHUB_RUN_ID" ]] return $? } if _is_lto_kernel && [ "$_use_lto_suffix" = "yes" ]; then _pkgsuffix=cachyos-lto elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "yes" ]; then _pkgsuffix=cachyos-gcc else _pkgsuffix=cachyos fi pkgbase="linux-$_pkgsuffix" _major=7.1 _minor=2 #_minorc=$((_minor+1)) #_rcver=rc8 pkgver=${_major}.${_minor} _tagrel=3 pkgrel=3 _srcname=cachyos-${_major}.${_minor}-${_tagrel} pkgdesc='Linux EEVDF + LTO + AutoFDO + Propeller Cachy Sauce Kernel by CachyOS with other patches and improvements.' _kernver="$pkgver-$pkgrel" _kernuname="${pkgver}-${_pkgsuffix}" arch=('x86_64') url="https://github.com/CachyOS/linux-cachyos" license=('GPL-2.0-only') options=('!strip' '!debug' '!lto') makedepends=( bc binutils cpio gettext glibc libelf libgcc openssl pahole perl python rust rust-bindgen rust-src tar xxhash xz zlib zstd ) _patchsource="https://raw.githubusercontent.com/cachyos/kernel-patches/master/${_major}" _nv_ver=610.43.02 _nv_pkg="NVIDIA-Linux-x86_64-${_nv_ver}" _nv_open_pkg="NVIDIA-kernel-module-source-${_nv_ver}" source=( "https://github.com/CachyOS/linux/releases/download/${_srcname}/${_srcname}.tar.gz"{,.asc} "config" ) validpgpkeys=( E18447AC260021D31F3FF6C4C8A2A4774B8B63C4 # Eric Naim E8B9AA39F054E30E8290D492C3C4820857F654FE # Peter Jung ) # LLVM makedepends if _is_lto_kernel; then makedepends+=(clang llvm lld) source+=("${_patchsource}/misc/dkms-clang.patch") BUILD_FLAGS=( CC=clang LD=ld.lld LLVM=1 LLVM_IAS=1 ) fi # WARNING The ZFS module doesn't build with selected RT sched due to licensing issues. if [[ "$_cpusched" = "rt" || "$_cpusched" = "rt-bore" ]]; then unset _build_zfs fi # ZFS support if [ "$_build_zfs" = "yes" ]; then makedepends+=(git) source+=("git+https://github.com/cachyos/zfs.git#commit=c681af76c5a6a15caada25eb13090e41218c7831") fi if [ "$_build_nvidia_open" = "yes" ]; then source+=("https://download.nvidia.com/XFree86/${_nv_open_pkg%"-$_nv_ver"}/${_nv_open_pkg}.tar.xz") fi # Use generated AutoFDO Profile if [ "$_autofdo" = "yes" ] && [ -n "$_autofdo_profile_name" ]; then if [ -e "$_autofdo_profile_name" ]; then source+=("$_autofdo_profile_name") else _die "Failed to find file ${_autofdo_profile_name}" fi fi # Use generated Propeller Profile if [ "$_propeller" = "yes" ] && [ "$_propeller_profiles" = "yes" ]; then source+=(propeller_cc_profile.txt propeller_ld_profile.txt) fi if [ "$_build_r8125" = "yes" ]; then source+=("git+https://github.com/aravance/r8125.git") fi ## List of CachyOS schedulers case "$_cpusched" in bore|rt-bore|hardened) # CachyOS Scheduler (BORE) source+=("${_patchsource}/sched/0001-bore-cachy.patch");;& bmq) ## Project C Scheduler source+=("${_patchsource}/sched/0001-prjc-cachy.patch");; hardened) ## Hardened Patches source+=("${_patchsource}/misc/0001-hardened.patch");; rt|rt-bore) ## RT patches source+=("${_patchsource}/misc/0001-rt-i915.patch");; esac export KBUILD_BUILD_HOST=cachyos export KBUILD_BUILD_USER="$pkgbase" export KBUILD_BUILD_TIMESTAMP="$(date -Ru${SOURCE_DATE_EPOCH:+d @$SOURCE_DATE_EPOCH})" _die() { error "$@" ; exit 1; } prepare() { cd "$_srcname" echo "Setting version..." echo "-$pkgrel" > localversion.10-pkgrel echo "${pkgbase#linux}" > localversion.20-pkgname local src for patch in "${source[@]}"; do patch="${patch%%::*}" src="${patch##*/}" src="${src%.zst}" [[ $src = *.patch ]] || continue echo "Applying patch $src..." if [[ "$patch" == "${_patchsource}"/misc/nvidia/* ]]; then patch -Np1 < "../$src" -d "${srcdir}/${_nv_open_pkg}" else patch -Np1 < "../$src" fi done echo "Setting config..." cp ../config .config ### Select CPU optimization if [ -n "$_processor_opt" ]; then MARCH="${_processor_opt^^}" case "$MARCH" in GENERIC_V[1-4]) scripts/config -e GENERIC_CPU -d MZEN4 -d X86_NATIVE_CPU \ --set-val X86_64_VERSION "${MARCH//GENERIC_V}";; ZEN4) scripts/config -d GENERIC_CPU -e MZEN4 -d X86_NATIVE_CPU;; NATIVE) scripts/config -d GENERIC_CPU -d MZEN4 -e X86_NATIVE_CPU;; esac else scripts/config -d GENERIC_CPU -d MZEN4 -e X86_NATIVE_CPU fi ### Selecting CachyOS config if [ "$_cachy_config" = "yes" ]; then echo "Enabling CachyOS config..." scripts/config -e CACHY fi ### Selecting the CPU scheduler case "$_cpusched" in cachyos|bore|hardened) scripts/config -e SCHED_BORE;; bmq) scripts/config -e SCHED_ALT -e SCHED_BMQ;; eevdf) ;; rt) scripts/config -e PREEMPT_RT;; rt-bore) scripts/config -e SCHED_BORE -e PREEMPT_RT;; *) _die "The value $_cpusched is invalid. Choose the correct one again.";; esac echo "Selecting ${_cpusched^^} CPU scheduler..." ### Enable KCFI if [ "$_use_kcfi" = "yes" ]; then echo "Enabling kCFI" scripts/config -e ARCH_SUPPORTS_CFI_CLANG -e CFI_CLANG -e CFI_AUTO_DEFAULT fi ### Select LLVM level case "$_use_llvm_lto" in thin) scripts/config -e LTO_CLANG_THIN;; thin-dist) scripts/config -e LTO_CLANG_THIN_DIST;; full) scripts/config -e LTO_CLANG_FULL;; none) scripts/config -e LTO_NONE;; *) _die "The value '$_use_llvm_lto' is invalid. Choose the correct one again.";; esac echo "Selecting '$_use_llvm_lto' LLVM level..." if ! _is_lto_kernel; then echo "Enabling QR Code Panic for GCC Kernels" scripts/config --set-str DRM_PANIC_SCREEN qr_code -e DRM_PANIC_SCREEN_QR_CODE \ --set-str DRM_PANIC_SCREEN_QR_CODE_URL https://panic.archlinux.org/panic_report# \ --set-val CONFIG_DRM_PANIC_SCREEN_QR_VERSION 40 fi ### Select tick rate case "$_HZ_ticks" in 100|250|500|600|750|1000) scripts/config -d HZ_300 -e "HZ_${_HZ_ticks}" --set-val HZ "${_HZ_ticks}";; 300) scripts/config -e HZ_300 --set-val HZ 300;; *) _die "The value $_HZ_ticks is invalid. Choose the correct one again." esac echo "Setting tick rate to ${_HZ_ticks}Hz..." ### Select performance governor if [ "$_per_gov" = "yes" ]; then echo "Setting performance governor..." scripts/config -d CPU_FREQ_DEFAULT_GOV_SCHEDUTIL \ -e CPU_FREQ_DEFAULT_GOV_PERFORMANCE fi ### Select tick type case "$_tickrate" in periodic) scripts/config -d NO_HZ_IDLE -d NO_HZ_FULL -d NO_HZ -d NO_HZ_COMMON -e HZ_PERIODIC;; idle) scripts/config -d HZ_PERIODIC -d NO_HZ_FULL -e NO_HZ_IDLE -e NO_HZ -e NO_HZ_COMMON;; full) scripts/config -d HZ_PERIODIC -d NO_HZ_IDLE -d CONTEXT_TRACKING_FORCE -e NO_HZ_FULL_NODEF -e NO_HZ_FULL -e NO_HZ -e NO_HZ_COMMON -e CONTEXT_TRACKING;; *) _die "The value '$_tickrate' is invalid. Choose the correct one again.";; esac echo "Selecting '$_tickrate' tick type..." ### Select preempt type # We should not set up the PREEMPT for RT kernels if [[ "$_cpusched" != "rt" && "$_cpusched" != "rt-bore" ]]; then case "$_preempt" in full) scripts/config -e PREEMPT -d PREEMPT_LAZY;; lazy) scripts/config -d PREEMPT -e PREEMPT_LAZY;; *) _die "The value '$_preempt' is invalid. Choose the correct one again.";; esac echo "Selecting '$_preempt' preempt type..." fi ### Enable O3 if [ "$_cc_harder" = "yes" ]; then echo "Enabling KBUILD_CFLAGS -O3..." scripts/config -d CC_OPTIMIZE_FOR_PERFORMANCE \ -e CC_OPTIMIZE_FOR_PERFORMANCE_O3 fi ### CI-only stuff if _is_ci_build; then echo "Detected build inside CI" scripts/config \ -d CC_OPTIMIZE_FOR_PERFORMANCE_O3 \ -e CC_OPTIMIZE_FOR_SIZE \ -d DEBUG_KERNEL \ -e DEBUG_INFO_REDUCED fi ### Enable bbr3 if [ "$_tcp_bbr3" = "yes" ]; then echo "Disabling TCP_CONG_CUBIC..." scripts/config -m TCP_CONG_CUBIC \ -d DEFAULT_CUBIC \ -e TCP_CONG_BBR \ -e DEFAULT_BBR \ --set-str DEFAULT_TCP_CONG bbr \ -m NET_SCH_FQ_CODEL \ -e NET_SCH_FQ \ -d CONFIG_DEFAULT_FQ_CODEL \ -e CONFIG_DEFAULT_FQ fi ### Select THP case "$_hugepage" in always) scripts/config -d TRANSPARENT_HUGEPAGE_MADVISE -e TRANSPARENT_HUGEPAGE_ALWAYS;; madvise) scripts/config -d TRANSPARENT_HUGEPAGE_ALWAYS -e TRANSPARENT_HUGEPAGE_MADVISE;; *) _die "The value '$_hugepage' is invalid. Choose the correct one again.";; esac echo "Selecting '$_hugepage' TRANSPARENT_HUGEPAGE config..." # Enable Clang AutoFDO # Add additonal check if Thin or Full LTO is enabled otherwise die if [ "$_autofdo" = "yes" ]; then scripts/config -e AUTOFDO_CLANG fi if [ "$_autofdo" = "yes" ] && [ -n "$_autofdo_profile_name" ]; then echo "AutoFDO profile has been found..." BUILD_FLAGS+=(CLANG_AUTOFDO_PROFILE="${srcdir}/${_autofdo_profile_name}") fi # Propeller Optimization if [ "$_propeller" = "yes" ]; then scripts/config -e PROPELLER_CLANG fi if [ "$_propeller" = "yes" ] && [ "$_propeller_profiles" = "yes" ]; then echo "Propeller profile has been found..." BUILD_FLAGS+=(CLANG_PROPELLER_PROFILE_PREFIX="${srcdir}/propeller") fi ### Optionally use running kernel's config # code originally by nous; http://aur.archlinux.org/packages.php?ID=40191 if [ "$_use_current" = "yes" ]; then if [[ -s /proc/config.gz ]]; then echo "Extracting config from /proc/config.gz..." # modprobe configs zcat /proc/config.gz > ./.config else warning "Your kernel was not compiled with IKPROC!" warning "You cannot read the current config!" warning "Aborting!" exit fi fi ### Optionally load needed modules for the make localmodconfig # See https://aur.archlinux.org/packages/modprobed-db if [ "$_localmodcfg" = "yes" ]; then if [ -e "$_localmodcfg_path" ]; then echo "Running Steven Rostedt's make localmodconfig now" make "${BUILD_FLAGS[@]}" LSMOD="${_localmodcfg_path}" localmodconfig else _die "No modprobed.db data found" fi fi ### Rewrite configuration echo "Rewrite configuration..." make "${BUILD_FLAGS[@]}" prepare yes "" | make "${BUILD_FLAGS[@]}" config >/dev/null diff -u ../config .config || : ### Prepared version make -s kernelrelease > version echo "Prepared $pkgbase version $( "${basedir}/config-${pkgver}-${pkgrel}${pkgbase#linux}" } _sign_modules() { msg2 "Signing modules in $1" local sign_script="${srcdir}/${_srcname}/scripts/sign-file" local sign_key="$(grep -Po 'CONFIG_MODULE_SIG_KEY="\K[^"]*' "${srcdir}/${_srcname}/.config")" if [[ ! "$sign_key" =~ ^/ ]]; then sign_key="${srcdir}/${_srcname}/${sign_key}" fi local sign_cert="${srcdir}/${_srcname}/certs/signing_key.x509" local hash_algo="$(grep -Po 'CONFIG_MODULE_SIG_HASH="\K[^"]*' "${srcdir}/${_srcname}/.config")" if [ "$_use_llvm_lto" != "none" ]; then local strip_bin="llvm-strip" else local strip_bin="strip" fi find "$1" -type f -name '*.ko' -print \ -exec "${strip_bin}" --strip-debug '{}' \; \ -exec "${sign_script}" "${hash_algo}" "${sign_key}" "${sign_cert}" '{}' \; } build() { cd "$_srcname" make "${BUILD_FLAGS[@]}" -j"$(nproc)" all if ! _is_ci_build; then make -C tools/bpf/bpftool vmlinux.h feature-clang-bpf-co-re=1 fi local MODULE_FLAGS=( KERNEL_UNAME="${_kernuname}" IGNORE_PREEMPT_RT_PRESENCE=1 SYSSRC="${srcdir}/${_srcname}" SYSOUT="${srcdir}/${_srcname}" ) if [ "$_build_nvidia_open" = "yes" ]; then cd "${srcdir}/${_nv_open_pkg}" MODULE_FLAGS+=(IGNORE_CC_MISMATCH=yes) CFLAGS= CXXFLAGS= LDFLAGS= make "${BUILD_FLAGS[@]}" "${MODULE_FLAGS[@]}" -j"$(nproc)" modules fi if [ "$_build_zfs" = "yes" ]; then cd ${srcdir}/"zfs" local CONFIGURE_FLAGS=() [ "$_use_llvm_lto" != "none" ] && CONFIGURE_FLAGS+=("KERNEL_LLVM=1") ./autogen.sh sed -i "s|\$(uname -r)|${_kernuname}|g" configure ./configure "${CONFIGURE_FLAGS[@]}" --prefix=/usr --sysconfdir=/etc --sbindir=/usr/bin \ --libdir=/usr/lib --datadir=/usr/share --includedir=/usr/include \ --with-udevdir=/lib/udev --libexecdir=/usr/lib/zfs --with-config=kernel \ --with-linux="${srcdir}/$_srcname" make "${BUILD_FLAGS[@]}" fi if [ "$_build_r8125" = "yes" ]; then cd "${srcdir}/r8125" make "${BUILD_FLAGS[@]}" KERNELDIR="$srcdir/$_srcname" modules fi } _package() { pkgdesc="The $pkgdesc kernel and modules" depends=('coreutils' 'kmod' 'initramfs') optdepends=('wireless-regdb: to set the correct wireless channels of your country' 'linux-firmware: firmware images needed for some devices' 'modprobed-db: Keeps track of EVERY kernel module that has ever been probed - useful for those of us who make localmodconfig' 'scx-scheds: to use sched-ext schedulers') provides=(VIRTUALBOX-GUEST-MODULES WIREGUARD-MODULE KSMBD-MODULE V4L2LOOPBACK-MODULE NTSYNC-MODULE VHBA-MODULE ADIOS-MODULE) # Replace LTO kernel with the default kernel if _is_lto_kernel; then provides+=(linux-cachyos-lto=$_kernver) replaces=(linux-cachyos-lto) fi cd "$_srcname" local modulesdir="$pkgdir/usr/lib/modules/$(/dev/null; then install -Dt "$builddir/rust" -m644 rust/*.rmeta fi # Install .so files if they exist if compgen -G "rust/*.so" 1>/dev/null; then install -Dt "$builddir/rust" rust/*.so fi echo "Installing unstripped VDSO..." make INSTALL_MOD_PATH="$pkgdir/usr" vdso_install \ link= # Suppress build-id symlinks echo "Removing unneeded architectures..." local arch for arch in "$builddir"/arch/*/; do [[ $arch = */x86/ ]] && continue echo "Removing $(basename "$arch")" rm -r "$arch" done echo "Removing documentation..." rm -r "$builddir/Documentation" echo "Removing broken symlinks..." find -L "$builddir" -type l -printf 'Removing %P\n' -delete echo "Removing loose objects..." find "$builddir" -type f -name '*.o' -printf 'Removing %P\n' -delete echo "Stripping build tools..." local file while read -rd '' file; do case "$(file -Sib "$file")" in application/x-sharedlib\;*) # Libraries (.so) strip -v $STRIP_SHARED "$file" ;; application/x-archive\;*) # Libraries (.a) strip -v $STRIP_STATIC "$file" ;; application/x-executable\;*) # Binaries strip -v $STRIP_BINARIES "$file" ;; application/x-pie-executable\;*) # Relocatable binaries strip -v $STRIP_SHARED "$file" ;; esac done < <(find "$builddir" -type f -perm -u+x ! -name vmlinux -print0) echo "Stripping vmlinux..." strip -v $STRIP_STATIC "$builddir/vmlinux" echo "Adding symlink..." mkdir -p "$pkgdir/usr/src" ln -sr "$builddir" "$pkgdir/usr/src/$pkgbase" } _package-dbg(){ pkgdesc="Non-stripped vmlinux file for the $pkgdesc kernel" depends=("${pkgbase}-headers") cd "${_srcname}" mkdir -p "$pkgdir/usr/src/debug/${pkgbase}" install -Dt "$pkgdir/usr/src/debug/${pkgbase}" -m644 vmlinux } _package-zfs(){ pkgdesc="zfs module for the $pkgdesc kernel" depends=('pahole' "${pkgbase}=${_kernver}") provides=('ZFS-MODULE') license=('CDDL') cd "$_srcname" local modulesdir="$pkgdir/usr/lib/modules/$( "${pkgdir}/usr/lib/modprobe.d/${pkgname}.conf" } pkgname=("$pkgbase") [ "$_build_debug" = "yes" ] && pkgname+=("$pkgbase-dbg") pkgname+=("$pkgbase-headers") [ "$_build_zfs" = "yes" ] && pkgname+=("$pkgbase-zfs") [ "$_build_nvidia_open" = "yes" ] && pkgname+=("$pkgbase-nvidia-open") [ "$_build_r8125" = "yes" ] && pkgname+=("$pkgbase-r8125") for _p in "${pkgname[@]}"; do eval "package_$_p() { $(declare -f "_package${_p#$pkgbase}") _package${_p#$pkgbase} }" done b2sums=('79c5bb7893d04b4093ccc8972335cdb755596efe07255deec7f34b1c175716effb6ff3d6bc0cc2edb11b7e09d0145e01a192b41faf8b8f61849eb5d86946e3e1' 'SKIP' '6bea8dff89f6d03ee5e7c6b76934e4ffaa3511cebd9c8f9986bf6c11816dcbd88f55c9c686fca6f176c35746f3fa7fc3c286218144d38289ec6f2079f5ce8b42' 'c992567bd7dd8553432be496ffa1c17e2f5ebe9c7edb51945cf977e1b742dd6517c210d8843bb82744ca705efd07f8027cd7dde41b50215ebd707a34aa81462e')