diff --git a/linux-cachyos-bmq/PKGBUILD b/linux-cachyos-bmq/PKGBUILD index 86938123..123b9c41 100644 --- a/linux-cachyos-bmq/PKGBUILD +++ b/linux-cachyos-bmq/PKGBUILD @@ -9,7 +9,7 @@ # Set these variables to ANYTHING that is not null or choose proper variable to enable them ### Selecting CachyOS config -: "${_cachy_config:=y}" +: "${_cachy_config:=yes}" ### Selecting the CPU scheduler # ATTENTION - only one of the following values can be selected: @@ -23,22 +23,22 @@ : "${_cpusched:=bmq}" ### Tweak kernel options prior to a build via nconfig -: "${_makenconfig:=}" +: "${_makenconfig:=no}" ### Tweak kernel options prior to a build via menuconfig -: "${_makemenuconfig:=}" +: "${_makemenuconfig:=no}" ### Tweak kernel options prior to a build via xconfig -: "${_makexconfig:=}" +: "${_makexconfig:=no}" ### Tweak kernel options prior to a build via gconfig -: "${_makegconfig:=}" +: "${_makegconfig:=no}" # NUMA is optimized for multi-socket motherboards. # A single multi-core CPU actually runs slower with NUMA enabled. # See, https://bugs.archlinux.org/task/31187 # It seems that in 2023 this is not really a huge regression anymore -: "${_NUMAdisable:=}" +: "${_NUMAdisable:=no}" # Compile ONLY used modules to VASTLYreduce the number of modules built # and the build time. @@ -48,7 +48,7 @@ # This PKGBUILD read the database kept if it exists # # More at this wiki page ---> https://wiki.archlinux.org/index.php/Modprobed-db -: "${_localmodcfg:=}" +: "${_localmodcfg:=no}" # Path to the list of used modules : "${_localmodcfg_path:="$HOME/.config/modprobed.db"}" @@ -58,16 +58,16 @@ # 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:=}" +: "${_use_current:=no}" ### Enable KBUILD_CFLAGS -O3 -: "${_cc_harder:=y}" +: "${_cc_harder:=yes}" ### Set performance governor as default -: "${_per_gov:=}" +: "${_per_gov:=no}" ### Enable TCP_CONG_BBR3 -: "${_tcp_bbr3:=}" +: "${_tcp_bbr3:=no}" ### Running with a 1000HZ, 750Hz, 625Hz, 600 Hz, 500Hz, 300Hz, 250Hz and 100Hz tick rate : "${_HZ_ticks:=1000}" @@ -98,7 +98,7 @@ : "${_processor_opt:=}" # This does automatically detect your supported CPU and optimizes for it -: "${_use_auto_optimization:=y}" +: "${_use_auto_optimization:=yes}" # Clang LTO mode, only available with the "llvm" compiler - options are "none", "full" or "thin". # ATTENTION - one of three predefined values should be selected! @@ -109,38 +109,38 @@ # Use suffix -lto only when requested by the user # Enabled by default. -# y - enable -lto suffix -# n - disable -lto suffix +# yes - enable -lto suffix +# no - disable -lto suffix # https://github.com/CachyOS/linux-cachyos/issues/36 -: "${_use_lto_suffix:=y}" +: "${_use_lto_suffix:=yes}" # Use suffix -gcc when requested by the user # This was added to facilitate https://github.com/CachyOS/linux-cachyos/issues/286 -: "${_use_gcc_suffix:=}" +: "${_use_gcc_suffix:=no}" # 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:=}" +: "${_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:=}" +: "${_build_zfs:=no}" # Builds the nvidia module and package it into a own base # This does replace the requirement of nvidia-dkms -: "${_build_nvidia:=}" +: "${_build_nvidia:=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:=}" +: "${_build_nvidia_open:=no}" # Build a debug package with non-stripped vmlinux -: "${_build_debug:=}" +: "${_build_debug:=no}" # ATTENTION: Do not modify after this line _is_lto_kernel() { @@ -148,9 +148,9 @@ _is_lto_kernel() { return $? } -if _is_lto_kernel && [ "$_use_lto_suffix" = "y" ]; then +if _is_lto_kernel && [ "$_use_lto_suffix" = "yes" ]; then _pkgsuffix="cachyos-${_cpusched}-lto" -elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "y" ]; then +elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "yes" ]; then _pkgsuffix="cachyos-${_cpusched}-gcc" else _pkgsuffix="cachyos-${_cpusched}" @@ -216,18 +216,18 @@ if [[ "$_cpusched" = "rt" || "$_cpusched" = "rt-bore" ]]; then fi # ZFS support -if [ -n "$_build_zfs" ]; then +if [ "$_build_zfs" = "yes" ]; then makedepends+=(git) source+=("git+https://github.com/cachyos/zfs.git#commit=e65f69e41f4a276d7d0d1800a2878308a0ba84a6") fi # NVIDIA pre-build module support -if [ -n "$_build_nvidia" ]; then +if [ "$_build_nvidia" = "yes" ]; then source+=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${_nv_ver}/${_nv_pkg}.run" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch") fi -if [ -n "$_build_nvidia_open" ]; then +if [ "$_build_nvidia_open" = "yes" ]; then source+=("nvidia-open-${_nv_ver}.tar.gz::https://github.com/NVIDIA/open-gpu-kernel-modules/archive/refs/tags/${_nv_ver}.tar.gz" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch" "${_patchsource}/misc/nvidia/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" @@ -294,19 +294,17 @@ prepare() { fi ### Use autooptimization - if [ -n "$_use_auto_optimization" ]; then + if [ "$_use_auto_optimization" = "yes" ]; then "${srcdir}"/auto-cpu-optimization.sh fi ### Selecting CachyOS config - if [ -n "$_cachy_config" ]; then + if [ "$_cachy_config" = "yes" ]; then echo "Enabling CachyOS config..." scripts/config -e CACHY fi ### Selecting the CPU scheduler - [ -z "$_cpusched" ] && _die "The value is empty. Choose the correct one again." - case "$_cpusched" in cachyos|bore|hardened) scripts/config -e SCHED_BORE;; bmq) scripts/config -e SCHED_ALT -e SCHED_BMQ;; @@ -319,14 +317,12 @@ prepare() { echo "Selecting ${_cpusched^^} CPU scheduler..." ### Enable KCFI - if [ -n "$_use_kcfi" ]; then + 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 - [ -z "$_use_llvm_lto" ] && _die "The value is empty. Choose the correct one again." - case "$_use_llvm_lto" in thin) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -d LTO_CLANG_FULL -e LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; full) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -e LTO_CLANG_FULL -d LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; @@ -337,8 +333,6 @@ prepare() { echo "Selecting '$_use_llvm_lto' LLVM level..." ### Select tick rate - [ -z "$_HZ_ticks" ] && _die "The value is empty. Choose the correct one again." - case "$_HZ_ticks" in 100|250|500|600|625|750|1000) scripts/config -d HZ_300 -e "HZ_${_HZ_ticks}" --set-val HZ "${_HZ_ticks}";; @@ -351,7 +345,7 @@ prepare() { echo "Setting tick rate to ${_HZ_ticks}Hz..." ### Disable NUMA - if [ -n "$_NUMAdisable" ]; then + if [ "$_NUMAdisable" = "yes" ]; then echo "Disabling NUMA from kernel config..." scripts/config -d NUMA \ -d AMD_NUMA \ @@ -369,15 +363,13 @@ prepare() { fi ### Select performance governor - if [ -n "$_per_gov" ]; then + 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 - [ -z "$_tickrate" ] && _die "The value is empty. Choose the correct one again." - case "$_tickrate" in perodic) 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;; @@ -391,8 +383,6 @@ prepare() { # We should not set up the PREEMPT for RT kernels if [[ "$_cpusched" != "rt" || "$_cpusched" != "rt-bore" ]]; then - [ -z "$_preempt" ] && _die "The value is empty. Choose the correct one again." - case "$_preempt" in full) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -d PREEMPT_VOLUNTARY -e PREEMPT -e PREEMPT_COUNT -e PREEMPTION -e PREEMPT_DYNAMIC;; voluntary) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -e PREEMPT_VOLUNTARY -d PREEMPT -e PREEMPT_COUNT -e PREEMPTION -d PREEMPT_DYNAMIC;; @@ -404,7 +394,7 @@ prepare() { fi ### Enable O3 - if [ -n "$_cc_harder" ] && [ -z "$_cc_size" ]; then + if [ "$_cc_harder" = "yes" ]; then echo "Enabling KBUILD_CFLAGS -O3..." scripts/config -d CC_OPTIMIZE_FOR_PERFORMANCE \ -e CC_OPTIMIZE_FOR_PERFORMANCE_O3 @@ -427,7 +417,7 @@ prepare() { fi ### Enable bbr3 - if [ -n "$_tcp_bbr3" ]; then + if [ "$_tcp_bbr3" = "yes" ]; then echo "Disabling TCP_CONG_CUBIC..." scripts/config -m TCP_CONG_CUBIC \ -d DEFAULT_CUBIC \ @@ -441,8 +431,6 @@ prepare() { fi ### Select THP - [ -z "$_hugepage" ] && _die "The value is empty. Choose the correct one again." - 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;; @@ -456,7 +444,7 @@ prepare() { ### Optionally use running kernel's config # code originally by nous; http://aur.archlinux.org/packages.php?ID=40191 - if [ -n "$_use_current" ]; then + if [ "$_use_current" = "yes" ]; then if [[ -s /proc/config.gz ]]; then echo "Extracting config from /proc/config.gz..." # modprobe configs @@ -469,10 +457,9 @@ prepare() { fi fi - ### Optionally load needed modules for the make localmodconfig # See https://aur.archlinux.org/packages/modprobed-db - if [ -n "$_localmodcfg" ]; then + if [ "$_localmodcfg" = "yes" ]; then if [ -e "$_localmodcfg_path" ]; then echo "Running Steven Rostedt's make localmodconfig now" make "${BUILD_FLAGS[@]}" LSMOD="${_localmodcfg_path}" localmodconfig @@ -492,23 +479,23 @@ prepare() { echo "Prepared $pkgbase version $( "${basedir}/config-${pkgver}-${pkgrel}${pkgbase#linux}" - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then cd "${srcdir}" sh "${_nv_pkg}.run" --extract-only @@ -516,7 +503,7 @@ prepare() { patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_pkg}/kernel" fi - if [ -n "$_build_nvidia_open" ]; then + if [ "$_build_nvidia_open" = "yes" ]; then patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_open_pkg}/kernel-open" # Fix for Zen5 error print in dmesg patch -Np1 --no-backup-if-mismatch -i "${srcdir}/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" -d "${srcdir}/${_nv_open_pkg}" @@ -540,20 +527,20 @@ build() { SYSSRC="${srcdir}/${_srcname}" SYSOUT="${srcdir}/${_srcname}" ) - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then MODULE_FLAGS+=(NV_EXCLUDE_BUILD_MODULES='__EXCLUDE_MODULES') cd "${srcdir}/${_nv_pkg}/kernel" make "${BUILD_FLAGS[@]}" "${MODULE_FLAGS[@]}" -j"$(nproc)" modules fi - if [ -n "$_build_nvidia_open" ]; then + 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 [ -n "$_build_zfs" ]; then + if [ "$_build_zfs" = "yes" ]; then cd ${srcdir}/"zfs" local CONFIGURE_FLAGS=() @@ -745,11 +732,11 @@ _package-nvidia-open(){ } pkgname=("$pkgbase") -[ -n "$_build_debug" ] && pkgname+=("$pkgbase-dbg") +[ "$_build_debug" = "yes" ] && pkgname+=("$pkgbase-dbg") pkgname+=("$pkgbase-headers") -[ -n "$_build_zfs" ] && pkgname+=("$pkgbase-zfs") -[ -n "$_build_nvidia" ] && pkgname+=("$pkgbase-nvidia") -[ -n "$_build_nvidia_open" ] && pkgname+=("$pkgbase-nvidia-open") +[ "$_build_zfs" = "yes" ] && pkgname+=("$pkgbase-zfs") +[ "$_build_nvidia" = "yes" ] && pkgname+=("$pkgbase-nvidia") +[ "$_build_nvidia_open" = "yes" ] && pkgname+=("$pkgbase-nvidia-open") for _p in "${pkgname[@]}"; do eval "package_$_p() { $(declare -f "_package${_p#$pkgbase}") diff --git a/linux-cachyos-bore/PKGBUILD b/linux-cachyos-bore/PKGBUILD index bca8f50f..97787ed0 100644 --- a/linux-cachyos-bore/PKGBUILD +++ b/linux-cachyos-bore/PKGBUILD @@ -9,7 +9,7 @@ # Set these variables to ANYTHING that is not null or choose proper variable to enable them ### Selecting CachyOS config -: "${_cachy_config:=y}" +: "${_cachy_config:=yes}" ### Selecting the CPU scheduler # ATTENTION - only one of the following values can be selected: @@ -23,22 +23,22 @@ : "${_cpusched:=bore}" ### Tweak kernel options prior to a build via nconfig -: "${_makenconfig:=}" +: "${_makenconfig:=no}" ### Tweak kernel options prior to a build via menuconfig -: "${_makemenuconfig:=}" +: "${_makemenuconfig:=no}" ### Tweak kernel options prior to a build via xconfig -: "${_makexconfig:=}" +: "${_makexconfig:=no}" ### Tweak kernel options prior to a build via gconfig -: "${_makegconfig:=}" +: "${_makegconfig:=no}" # NUMA is optimized for multi-socket motherboards. # A single multi-core CPU actually runs slower with NUMA enabled. # See, https://bugs.archlinux.org/task/31187 # It seems that in 2023 this is not really a huge regression anymore -: "${_NUMAdisable:=}" +: "${_NUMAdisable:=no}" # Compile ONLY used modules to VASTLYreduce the number of modules built # and the build time. @@ -48,7 +48,7 @@ # This PKGBUILD read the database kept if it exists # # More at this wiki page ---> https://wiki.archlinux.org/index.php/Modprobed-db -: "${_localmodcfg:=}" +: "${_localmodcfg:=no}" # Path to the list of used modules : "${_localmodcfg_path:="$HOME/.config/modprobed.db"}" @@ -58,16 +58,16 @@ # 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:=}" +: "${_use_current:=no}" ### Enable KBUILD_CFLAGS -O3 -: "${_cc_harder:=y}" +: "${_cc_harder:=yes}" ### Set performance governor as default -: "${_per_gov:=}" +: "${_per_gov:=no}" ### Enable TCP_CONG_BBR3 -: "${_tcp_bbr3:=}" +: "${_tcp_bbr3:=no}" ### Running with a 1000HZ, 750Hz, 625Hz, 600 Hz, 500Hz, 300Hz, 250Hz and 100Hz tick rate : "${_HZ_ticks:=1000}" @@ -98,7 +98,7 @@ : "${_processor_opt:=}" # This does automatically detect your supported CPU and optimizes for it -: "${_use_auto_optimization:=y}" +: "${_use_auto_optimization:=yes}" # Clang LTO mode, only available with the "llvm" compiler - options are "none", "full" or "thin". # ATTENTION - one of three predefined values should be selected! @@ -109,10 +109,10 @@ # Use suffix -lto only when requested by the user # Enabled by default. -# y - enable -lto suffix -# n - disable -lto suffix +# yes - enable -lto suffix +# no - disable -lto suffix # https://github.com/CachyOS/linux-cachyos/issues/36 -: "${_use_lto_suffix:=y}" +: "${_use_lto_suffix:=yes}" # Use suffix -gcc when requested by the user # This was added to facilitate https://github.com/CachyOS/linux-cachyos/issues/286 @@ -123,24 +123,24 @@ # 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:=}" +: "${_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:=}" +: "${_build_zfs:=no}" # Builds the nvidia module and package it into a own base # This does replace the requirement of nvidia-dkms -: "${_build_nvidia:=}" +: "${_build_nvidia:=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:=}" +: "${_build_nvidia_open:=no}" # Build a debug package with non-stripped vmlinux -: "${_build_debug:=}" +: "${_build_debug:=no}" # ATTENTION: Do not modify after this line _is_lto_kernel() { @@ -148,9 +148,9 @@ _is_lto_kernel() { return $? } -if _is_lto_kernel && [ "$_use_lto_suffix" = "y" ]; then +if _is_lto_kernel && [ "$_use_lto_suffix" = "yes" ]; then _pkgsuffix="cachyos-${_cpusched}-lto" -elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "y" ]; then +elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "yes" ]; then _pkgsuffix="cachyos-${_cpusched}-gcc" else _pkgsuffix="cachyos-${_cpusched}" @@ -216,18 +216,18 @@ if [[ "$_cpusched" = "rt" || "$_cpusched" = "rt-bore" ]]; then fi # ZFS support -if [ -n "$_build_zfs" ]; then +if [ "$_build_zfs" = "yes" ]; then makedepends+=(git) source+=("git+https://github.com/cachyos/zfs.git#commit=e65f69e41f4a276d7d0d1800a2878308a0ba84a6") fi # NVIDIA pre-build module support -if [ -n "$_build_nvidia" ]; then +if [ "$_build_nvidia" = "yes" ]; then source+=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${_nv_ver}/${_nv_pkg}.run" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch") fi -if [ -n "$_build_nvidia_open" ]; then +if [ "$_build_nvidia_open" = "yes" ]; then source+=("nvidia-open-${_nv_ver}.tar.gz::https://github.com/NVIDIA/open-gpu-kernel-modules/archive/refs/tags/${_nv_ver}.tar.gz" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch" "${_patchsource}/misc/nvidia/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" @@ -294,19 +294,17 @@ prepare() { fi ### Use autooptimization - if [ -n "$_use_auto_optimization" ]; then + if [ "$_use_auto_optimization" = "yes" ]; then "${srcdir}"/auto-cpu-optimization.sh fi ### Selecting CachyOS config - if [ -n "$_cachy_config" ]; then + if [ "$_cachy_config" = "yes" ]; then echo "Enabling CachyOS config..." scripts/config -e CACHY fi ### Selecting the CPU scheduler - [ -z "$_cpusched" ] && _die "The value is empty. Choose the correct one again." - case "$_cpusched" in cachyos|bore|hardened) scripts/config -e SCHED_BORE;; bmq) scripts/config -e SCHED_ALT -e SCHED_BMQ;; @@ -319,14 +317,12 @@ prepare() { echo "Selecting ${_cpusched^^} CPU scheduler..." ### Enable KCFI - if [ -n "$_use_kcfi" ]; then + 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 - [ -z "$_use_llvm_lto" ] && _die "The value is empty. Choose the correct one again." - case "$_use_llvm_lto" in thin) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -d LTO_CLANG_FULL -e LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; full) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -e LTO_CLANG_FULL -d LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; @@ -337,8 +333,6 @@ prepare() { echo "Selecting '$_use_llvm_lto' LLVM level..." ### Select tick rate - [ -z "$_HZ_ticks" ] && _die "The value is empty. Choose the correct one again." - case "$_HZ_ticks" in 100|250|500|600|625|750|1000) scripts/config -d HZ_300 -e "HZ_${_HZ_ticks}" --set-val HZ "${_HZ_ticks}";; @@ -351,7 +345,7 @@ prepare() { echo "Setting tick rate to ${_HZ_ticks}Hz..." ### Disable NUMA - if [ -n "$_NUMAdisable" ]; then + if [ "$_NUMAdisable" = "yes" ]; then echo "Disabling NUMA from kernel config..." scripts/config -d NUMA \ -d AMD_NUMA \ @@ -369,15 +363,13 @@ prepare() { fi ### Select performance governor - if [ -n "$_per_gov" ]; then + 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 - [ -z "$_tickrate" ] && _die "The value is empty. Choose the correct one again." - case "$_tickrate" in perodic) 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;; @@ -391,8 +383,6 @@ prepare() { # We should not set up the PREEMPT for RT kernels if [[ "$_cpusched" != "rt" || "$_cpusched" != "rt-bore" ]]; then - [ -z "$_preempt" ] && _die "The value is empty. Choose the correct one again." - case "$_preempt" in full) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -d PREEMPT_VOLUNTARY -e PREEMPT -e PREEMPT_COUNT -e PREEMPTION -e PREEMPT_DYNAMIC;; voluntary) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -e PREEMPT_VOLUNTARY -d PREEMPT -e PREEMPT_COUNT -e PREEMPTION -d PREEMPT_DYNAMIC;; @@ -404,7 +394,7 @@ prepare() { fi ### Enable O3 - if [ -n "$_cc_harder" ] && [ -z "$_cc_size" ]; then + if [ "$_cc_harder" = "yes" ]; then echo "Enabling KBUILD_CFLAGS -O3..." scripts/config -d CC_OPTIMIZE_FOR_PERFORMANCE \ -e CC_OPTIMIZE_FOR_PERFORMANCE_O3 @@ -427,7 +417,7 @@ prepare() { fi ### Enable bbr3 - if [ -n "$_tcp_bbr3" ]; then + if [ "$_tcp_bbr3" = "yes" ]; then echo "Disabling TCP_CONG_CUBIC..." scripts/config -m TCP_CONG_CUBIC \ -d DEFAULT_CUBIC \ @@ -441,8 +431,6 @@ prepare() { fi ### Select THP - [ -z "$_hugepage" ] && _die "The value is empty. Choose the correct one again." - 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;; @@ -456,7 +444,7 @@ prepare() { ### Optionally use running kernel's config # code originally by nous; http://aur.archlinux.org/packages.php?ID=40191 - if [ -n "$_use_current" ]; then + if [ "$_use_current" = "yes" ]; then if [[ -s /proc/config.gz ]]; then echo "Extracting config from /proc/config.gz..." # modprobe configs @@ -469,10 +457,9 @@ prepare() { fi fi - ### Optionally load needed modules for the make localmodconfig # See https://aur.archlinux.org/packages/modprobed-db - if [ -n "$_localmodcfg" ]; then + if [ "$_localmodcfg" = "yes" ]; then if [ -e "$_localmodcfg_path" ]; then echo "Running Steven Rostedt's make localmodconfig now" make "${BUILD_FLAGS[@]}" LSMOD="${_localmodcfg_path}" localmodconfig @@ -492,23 +479,23 @@ prepare() { echo "Prepared $pkgbase version $( "${basedir}/config-${pkgver}-${pkgrel}${pkgbase#linux}" - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then cd "${srcdir}" sh "${_nv_pkg}.run" --extract-only @@ -516,7 +503,7 @@ prepare() { patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_pkg}/kernel" fi - if [ -n "$_build_nvidia_open" ]; then + if [ "$_build_nvidia_open" = "yes" ]; then patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_open_pkg}/kernel-open" # Fix for Zen5 error print in dmesg patch -Np1 --no-backup-if-mismatch -i "${srcdir}/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" -d "${srcdir}/${_nv_open_pkg}" @@ -540,20 +527,20 @@ build() { SYSSRC="${srcdir}/${_srcname}" SYSOUT="${srcdir}/${_srcname}" ) - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then MODULE_FLAGS+=(NV_EXCLUDE_BUILD_MODULES='__EXCLUDE_MODULES') cd "${srcdir}/${_nv_pkg}/kernel" make "${BUILD_FLAGS[@]}" "${MODULE_FLAGS[@]}" -j"$(nproc)" modules fi - if [ -n "$_build_nvidia_open" ]; then + 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 [ -n "$_build_zfs" ]; then + if [ "$_build_zfs" = "yes" ]; then cd ${srcdir}/"zfs" local CONFIGURE_FLAGS=() @@ -745,11 +732,11 @@ _package-nvidia-open(){ } pkgname=("$pkgbase") -[ -n "$_build_debug" ] && pkgname+=("$pkgbase-dbg") +[ "$_build_debug" = "yes" ] && pkgname+=("$pkgbase-dbg") pkgname+=("$pkgbase-headers") -[ -n "$_build_zfs" ] && pkgname+=("$pkgbase-zfs") -[ -n "$_build_nvidia" ] && pkgname+=("$pkgbase-nvidia") -[ -n "$_build_nvidia_open" ] && pkgname+=("$pkgbase-nvidia-open") +[ "$_build_zfs" = "yes" ] && pkgname+=("$pkgbase-zfs") +[ "$_build_nvidia" = "yes" ] && pkgname+=("$pkgbase-nvidia") +[ "$_build_nvidia_open" = "yes" ] && pkgname+=("$pkgbase-nvidia-open") for _p in "${pkgname[@]}"; do eval "package_$_p() { $(declare -f "_package${_p#$pkgbase}") diff --git a/linux-cachyos-deckify/PKGBUILD b/linux-cachyos-deckify/PKGBUILD index cb22bc1d..c947645a 100644 --- a/linux-cachyos-deckify/PKGBUILD +++ b/linux-cachyos-deckify/PKGBUILD @@ -9,7 +9,7 @@ # Set these variables to ANYTHING that is not null or choose proper variable to enable them ### Selecting CachyOS config -: "${_cachy_config:=y}" +: "${_cachy_config:=yes}" ### Selecting the CPU scheduler # ATTENTION - only one of the following values can be selected: @@ -23,22 +23,22 @@ : "${_cpusched:=cachyos}" ### Tweak kernel options prior to a build via nconfig -: "${_makenconfig:=}" +: "${_makenconfig:=no}" ### Tweak kernel options prior to a build via menuconfig -: "${_makemenuconfig:=}" +: "${_makemenuconfig:=no}" ### Tweak kernel options prior to a build via xconfig -: "${_makexconfig:=}" +: "${_makexconfig:=no}" ### Tweak kernel options prior to a build via gconfig -: "${_makegconfig:=}" +: "${_makegconfig:=no}" # NUMA is optimized for multi-socket motherboards. # A single multi-core CPU actually runs slower with NUMA enabled. # See, https://bugs.archlinux.org/task/31187 # It seems that in 2023 this is not really a huge regression anymore -: "${_NUMAdisable:=}" +: "${_NUMAdisable:=no}" # Compile ONLY used modules to VASTLYreduce the number of modules built # and the build time. @@ -48,7 +48,7 @@ # This PKGBUILD read the database kept if it exists # # More at this wiki page ---> https://wiki.archlinux.org/index.php/Modprobed-db -: "${_localmodcfg:=}" +: "${_localmodcfg:=no}" # Path to the list of used modules : "${_localmodcfg_path:="$HOME/.config/modprobed.db"}" @@ -58,16 +58,16 @@ # 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:=}" +: "${_use_current:=no}" ### Enable KBUILD_CFLAGS -O3 -: "${_cc_harder:=y}" +: "${_cc_harder:=yes}" ### Set performance governor as default -: "${_per_gov:=}" +: "${_per_gov:=no}" ### Enable TCP_CONG_BBR3 -: "${_tcp_bbr3:=}" +: "${_tcp_bbr3:=no}" ### Running with a 1000HZ, 750Hz, 625Hz, 600 Hz, 500Hz, 300Hz, 250Hz and 100Hz tick rate : "${_HZ_ticks:=1000}" @@ -98,7 +98,7 @@ : "${_processor_opt:=}" # This does automatically detect your supported CPU and optimizes for it -: "${_use_auto_optimization:=y}" +: "${_use_auto_optimization:=yes}" # Clang LTO mode, only available with the "llvm" compiler - options are "none", "full" or "thin". # ATTENTION - one of three predefined values should be selected! @@ -108,38 +108,38 @@ : "${_use_llvm_lto:=none}" # Use suffix -lto only when requested by the user -# y - enable -lto suffix -# n - disable -lto suffix +# yes - enable -lto suffix +# no - disable -lto suffix # https://github.com/CachyOS/linux-cachyos/issues/36 -: "${_use_lto_suffix:=y}" +: "${_use_lto_suffix:=yes}" # Use suffix -gcc when requested by the user # This was added to facilitate https://github.com/CachyOS/linux-cachyos/issues/286 -: "${_use_gcc_suffix:=}" +: "${_use_gcc_suffix:=no}" # 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:=}" +: "${_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:=}" +: "${_build_zfs:=no}" # Builds the nvidia module and package it into a own base # This does replace the requirement of nvidia-dkms -: "${_build_nvidia:=}" +: "${_build_nvidia:=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:=}" +: "${_build_nvidia_open:=no}" # Build a debug package with non-stripped vmlinux -: "${_build_debug:=}" +: "${_build_debug:=no}" # ATTENTION: Do not modify after this line _is_lto_kernel() { @@ -147,9 +147,9 @@ _is_lto_kernel() { return $? } -if _is_lto_kernel && [ "$_use_lto_suffix" = "y" ]; then +if _is_lto_kernel && [ "$_use_lto_suffix" = "yes" ]; then _pkgsuffix="cachyos-deckify-lto" -elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "y" ]; then +elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "yes" ]; then _pkgsuffix="cachyos-deckify-gcc" else _pkgsuffix="cachyos-deckify" @@ -217,18 +217,18 @@ if [[ "$_cpusched" = "rt" || "$_cpusched" = "rt-bore" ]]; then fi # ZFS support -if [ -n "$_build_zfs" ]; then +if [ "$_build_zfs" = "yes" ]; then makedepends+=(git) source+=("git+https://github.com/cachyos/zfs.git#commit=e65f69e41f4a276d7d0d1800a2878308a0ba84a6") fi # NVIDIA pre-build module support -if [ -n "$_build_nvidia" ]; then +if [ "$_build_nvidia" = "yes" ]; then source+=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${_nv_ver}/${_nv_pkg}.run" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch") fi -if [ -n "$_build_nvidia_open" ]; then +if [ "$_build_nvidia_open" = "yes" ]; then source+=("nvidia-open-${_nv_ver}.tar.gz::https://github.com/NVIDIA/open-gpu-kernel-modules/archive/refs/tags/${_nv_ver}.tar.gz" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch" "${_patchsource}/misc/nvidia/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" @@ -295,19 +295,17 @@ prepare() { fi ### Use autooptimization - if [ -n "$_use_auto_optimization" ]; then + if [ "$_use_auto_optimization" = "yes" ]; then "${srcdir}"/auto-cpu-optimization.sh fi ### Selecting CachyOS config - if [ -n "$_cachy_config" ]; then + if [ "$_cachy_config" = "yes" ]; then echo "Enabling CachyOS config..." scripts/config -e CACHY fi ### Selecting the CPU scheduler - [ -z "$_cpusched" ] && _die "The value is empty. Choose the correct one again." - case "$_cpusched" in cachyos|bore|hardened) scripts/config -e SCHED_BORE;; bmq) scripts/config -e SCHED_ALT -e SCHED_BMQ;; @@ -320,14 +318,12 @@ prepare() { echo "Selecting ${_cpusched^^} CPU scheduler..." ### Enable KCFI - if [ -n "$_use_kcfi" ]; then + 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 - [ -z "$_use_llvm_lto" ] && _die "The value is empty. Choose the correct one again." - case "$_use_llvm_lto" in thin) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -d LTO_CLANG_FULL -e LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; full) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -e LTO_CLANG_FULL -d LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; @@ -338,8 +334,6 @@ prepare() { echo "Selecting '$_use_llvm_lto' LLVM level..." ### Select tick rate - [ -z "$_HZ_ticks" ] && _die "The value is empty. Choose the correct one again." - case "$_HZ_ticks" in 100|250|500|600|625|750|1000) scripts/config -d HZ_300 -e "HZ_${_HZ_ticks}" --set-val HZ "${_HZ_ticks}";; @@ -352,7 +346,7 @@ prepare() { echo "Setting tick rate to ${_HZ_ticks}Hz..." ### Disable NUMA - if [ -n "$_NUMAdisable" ]; then + if [ "$_NUMAdisable" = "yes" ]; then echo "Disabling NUMA from kernel config..." scripts/config -d NUMA \ -d AMD_NUMA \ @@ -370,15 +364,13 @@ prepare() { fi ### Select performance governor - if [ -n "$_per_gov" ]; then + 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 - [ -z "$_tickrate" ] && _die "The value is empty. Choose the correct one again." - case "$_tickrate" in perodic) 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;; @@ -392,8 +384,6 @@ prepare() { # We should not set up the PREEMPT for RT kernels if [[ "$_cpusched" != "rt" || "$_cpusched" != "rt-bore" ]]; then - [ -z "$_preempt" ] && _die "The value is empty. Choose the correct one again." - case "$_preempt" in full) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -d PREEMPT_VOLUNTARY -e PREEMPT -e PREEMPT_COUNT -e PREEMPTION -e PREEMPT_DYNAMIC;; voluntary) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -e PREEMPT_VOLUNTARY -d PREEMPT -e PREEMPT_COUNT -e PREEMPTION -d PREEMPT_DYNAMIC;; @@ -405,7 +395,7 @@ prepare() { fi ### Enable O3 - if [ -n "$_cc_harder" ] && [ -z "$_cc_size" ]; then + if [ "$_cc_harder" = "yes" ]; then echo "Enabling KBUILD_CFLAGS -O3..." scripts/config -d CC_OPTIMIZE_FOR_PERFORMANCE \ -e CC_OPTIMIZE_FOR_PERFORMANCE_O3 @@ -428,7 +418,7 @@ prepare() { fi ### Enable bbr3 - if [ -n "$_tcp_bbr3" ]; then + if [ "$_tcp_bbr3" = "yes" ]; then echo "Disabling TCP_CONG_CUBIC..." scripts/config -m TCP_CONG_CUBIC \ -d DEFAULT_CUBIC \ @@ -442,8 +432,6 @@ prepare() { fi ### Select THP - [ -z "$_hugepage" ] && _die "The value is empty. Choose the correct one again." - 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;; @@ -457,7 +445,7 @@ prepare() { ### Optionally use running kernel's config # code originally by nous; http://aur.archlinux.org/packages.php?ID=40191 - if [ -n "$_use_current" ]; then + if [ "$_use_current" = "yes" ]; then if [[ -s /proc/config.gz ]]; then echo "Extracting config from /proc/config.gz..." # modprobe configs @@ -470,10 +458,9 @@ prepare() { fi fi - ### Optionally load needed modules for the make localmodconfig # See https://aur.archlinux.org/packages/modprobed-db - if [ -n "$_localmodcfg" ]; then + if [ "$_localmodcfg" = "yes" ]; then if [ -e "$_localmodcfg_path" ]; then echo "Running Steven Rostedt's make localmodconfig now" make "${BUILD_FLAGS[@]}" LSMOD="${_localmodcfg_path}" localmodconfig @@ -493,23 +480,23 @@ prepare() { echo "Prepared $pkgbase version $( "${basedir}/config-${pkgver}-${pkgrel}${pkgbase#linux}" - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then cd "${srcdir}" sh "${_nv_pkg}.run" --extract-only @@ -517,7 +504,7 @@ prepare() { patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_pkg}/kernel" fi - if [ -n "$_build_nvidia_open" ]; then + if [ "$_build_nvidia_open" = "yes" ]; then patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_open_pkg}/kernel-open" # Fix for Zen5 error print in dmesg patch -Np1 --no-backup-if-mismatch -i "${srcdir}/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" -d "${srcdir}/${_nv_open_pkg}" @@ -541,20 +528,20 @@ build() { SYSSRC="${srcdir}/${_srcname}" SYSOUT="${srcdir}/${_srcname}" ) - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then MODULE_FLAGS+=(NV_EXCLUDE_BUILD_MODULES='__EXCLUDE_MODULES') cd "${srcdir}/${_nv_pkg}/kernel" make "${BUILD_FLAGS[@]}" "${MODULE_FLAGS[@]}" -j"$(nproc)" modules fi - if [ -n "$_build_nvidia_open" ]; then + 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 [ -n "$_build_zfs" ]; then + if [ "$_build_zfs" = "yes" ]; then cd ${srcdir}/"zfs" local CONFIGURE_FLAGS=() @@ -746,11 +733,11 @@ _package-nvidia-open(){ } pkgname=("$pkgbase") -[ -n "$_build_debug" ] && pkgname+=("$pkgbase-dbg") +[ "$_build_debug" = "yes" ] && pkgname+=("$pkgbase-dbg") pkgname+=("$pkgbase-headers") -[ -n "$_build_zfs" ] && pkgname+=("$pkgbase-zfs") -[ -n "$_build_nvidia" ] && pkgname+=("$pkgbase-nvidia") -[ -n "$_build_nvidia_open" ] && pkgname+=("$pkgbase-nvidia-open") +[ "$_build_zfs" = "yes" ] && pkgname+=("$pkgbase-zfs") +[ "$_build_nvidia" = "yes" ] && pkgname+=("$pkgbase-nvidia") +[ "$_build_nvidia_open" = "yes" ] && pkgname+=("$pkgbase-nvidia-open") for _p in "${pkgname[@]}"; do eval "package_$_p() { $(declare -f "_package${_p#$pkgbase}") diff --git a/linux-cachyos-eevdf/PKGBUILD b/linux-cachyos-eevdf/PKGBUILD index fa8c4659..57e90444 100644 --- a/linux-cachyos-eevdf/PKGBUILD +++ b/linux-cachyos-eevdf/PKGBUILD @@ -9,7 +9,7 @@ # Set these variables to ANYTHING that is not null or choose proper variable to enable them ### Selecting CachyOS config -: "${_cachy_config:=y}" +: "${_cachy_config:=yes}" ### Selecting the CPU scheduler # ATTENTION - only one of the following values can be selected: @@ -23,22 +23,22 @@ : "${_cpusched:=eevdf}" ### Tweak kernel options prior to a build via nconfig -: "${_makenconfig:=}" +: "${_makenconfig:=no}" ### Tweak kernel options prior to a build via menuconfig -: "${_makemenuconfig:=}" +: "${_makemenuconfig:=no}" ### Tweak kernel options prior to a build via xconfig -: "${_makexconfig:=}" +: "${_makexconfig:=no}" ### Tweak kernel options prior to a build via gconfig -: "${_makegconfig:=}" +: "${_makegconfig:=no}" # NUMA is optimized for multi-socket motherboards. # A single multi-core CPU actually runs slower with NUMA enabled. # See, https://bugs.archlinux.org/task/31187 # It seems that in 2023 this is not really a huge regression anymore -: "${_NUMAdisable:=}" +: "${_NUMAdisable:=no}" # Compile ONLY used modules to VASTLYreduce the number of modules built # and the build time. @@ -48,7 +48,7 @@ # This PKGBUILD read the database kept if it exists # # More at this wiki page ---> https://wiki.archlinux.org/index.php/Modprobed-db -: "${_localmodcfg:=}" +: "${_localmodcfg:=no}" # Path to the list of used modules : "${_localmodcfg_path:="$HOME/.config/modprobed.db"}" @@ -58,16 +58,16 @@ # 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:=}" +: "${_use_current:=no}" ### Enable KBUILD_CFLAGS -O3 -: "${_cc_harder:=y}" +: "${_cc_harder:=yes}" ### Set performance governor as default -: "${_per_gov:=}" +: "${_per_gov:=no}" ### Enable TCP_CONG_BBR3 -: "${_tcp_bbr3:=}" +: "${_tcp_bbr3:=no}" ### Running with a 1000HZ, 750Hz, 625Hz, 600 Hz, 500Hz, 300Hz, 250Hz and 100Hz tick rate : "${_HZ_ticks:=1000}" @@ -98,7 +98,7 @@ : "${_processor_opt:=}" # This does automatically detect your supported CPU and optimizes for it -: "${_use_auto_optimization:=y}" +: "${_use_auto_optimization:=yes}" # Clang LTO mode, only available with the "llvm" compiler - options are "none", "full" or "thin". # ATTENTION - one of three predefined values should be selected! @@ -109,38 +109,38 @@ # Use suffix -lto only when requested by the user # Enabled by default. -# y - enable -lto suffix -# n - disable -lto suffix +# yes - enable -lto suffix +# no - disable -lto suffix # https://github.com/CachyOS/linux-cachyos/issues/36 -: "${_use_lto_suffix:=y}" +: "${_use_lto_suffix:=yes}" # Use suffix -gcc when requested by the user # This was added to facilitate https://github.com/CachyOS/linux-cachyos/issues/286 -: "${_use_gcc_suffix:=}" +: "${_use_gcc_suffix:=no}" # 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:=}" +: "${_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:=}" +: "${_build_zfs:=no}" # Builds the nvidia module and package it into a own base # This does replace the requirement of nvidia-dkms -: "${_build_nvidia:=}" +: "${_build_nvidia:=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:=}" +: "${_build_nvidia_open:=no}" # Build a debug package with non-stripped vmlinux -: "${_build_debug:=}" +: "${_build_debug:=no}" # ATTENTION: Do not modify after this line _is_lto_kernel() { @@ -148,9 +148,9 @@ _is_lto_kernel() { return $? } -if _is_lto_kernel && [ "$_use_lto_suffix" = "y" ]; then +if _is_lto_kernel && [ "$_use_lto_suffix" = "yes" ]; then _pkgsuffix="cachyos-${_cpusched}-lto" -elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "y" ]; then +elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "yes" ]; then _pkgsuffix="cachyos-${_cpusched}-gcc" else _pkgsuffix="cachyos-${_cpusched}" @@ -216,18 +216,18 @@ if [[ "$_cpusched" = "rt" || "$_cpusched" = "rt-bore" ]]; then fi # ZFS support -if [ -n "$_build_zfs" ]; then +if [ "$_build_zfs" = "yes" ]; then makedepends+=(git) source+=("git+https://github.com/cachyos/zfs.git#commit=e65f69e41f4a276d7d0d1800a2878308a0ba84a6") fi # NVIDIA pre-build module support -if [ -n "$_build_nvidia" ]; then +if [ "$_build_nvidia" = "yes" ]; then source+=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${_nv_ver}/${_nv_pkg}.run" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch") fi -if [ -n "$_build_nvidia_open" ]; then +if [ "$_build_nvidia_open" = "yes" ]; then source+=("nvidia-open-${_nv_ver}.tar.gz::https://github.com/NVIDIA/open-gpu-kernel-modules/archive/refs/tags/${_nv_ver}.tar.gz" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch" "${_patchsource}/misc/nvidia/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" @@ -294,19 +294,17 @@ prepare() { fi ### Use autooptimization - if [ -n "$_use_auto_optimization" ]; then + if [ "$_use_auto_optimization" = "yes" ]; then "${srcdir}"/auto-cpu-optimization.sh fi ### Selecting CachyOS config - if [ -n "$_cachy_config" ]; then + if [ "$_cachy_config" = "yes" ]; then echo "Enabling CachyOS config..." scripts/config -e CACHY fi ### Selecting the CPU scheduler - [ -z "$_cpusched" ] && _die "The value is empty. Choose the correct one again." - case "$_cpusched" in cachyos|bore|hardened) scripts/config -e SCHED_BORE;; bmq) scripts/config -e SCHED_ALT -e SCHED_BMQ;; @@ -319,14 +317,12 @@ prepare() { echo "Selecting ${_cpusched^^} CPU scheduler..." ### Enable KCFI - if [ -n "$_use_kcfi" ]; then + 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 - [ -z "$_use_llvm_lto" ] && _die "The value is empty. Choose the correct one again." - case "$_use_llvm_lto" in thin) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -d LTO_CLANG_FULL -e LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; full) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -e LTO_CLANG_FULL -d LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; @@ -337,8 +333,6 @@ prepare() { echo "Selecting '$_use_llvm_lto' LLVM level..." ### Select tick rate - [ -z "$_HZ_ticks" ] && _die "The value is empty. Choose the correct one again." - case "$_HZ_ticks" in 100|250|500|600|625|750|1000) scripts/config -d HZ_300 -e "HZ_${_HZ_ticks}" --set-val HZ "${_HZ_ticks}";; @@ -351,7 +345,7 @@ prepare() { echo "Setting tick rate to ${_HZ_ticks}Hz..." ### Disable NUMA - if [ -n "$_NUMAdisable" ]; then + if [ "$_NUMAdisable" = "yes" ]; then echo "Disabling NUMA from kernel config..." scripts/config -d NUMA \ -d AMD_NUMA \ @@ -369,15 +363,13 @@ prepare() { fi ### Select performance governor - if [ -n "$_per_gov" ]; then + 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 - [ -z "$_tickrate" ] && _die "The value is empty. Choose the correct one again." - case "$_tickrate" in perodic) 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;; @@ -391,8 +383,6 @@ prepare() { # We should not set up the PREEMPT for RT kernels if [[ "$_cpusched" != "rt" || "$_cpusched" != "rt-bore" ]]; then - [ -z "$_preempt" ] && _die "The value is empty. Choose the correct one again." - case "$_preempt" in full) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -d PREEMPT_VOLUNTARY -e PREEMPT -e PREEMPT_COUNT -e PREEMPTION -e PREEMPT_DYNAMIC;; voluntary) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -e PREEMPT_VOLUNTARY -d PREEMPT -e PREEMPT_COUNT -e PREEMPTION -d PREEMPT_DYNAMIC;; @@ -404,7 +394,7 @@ prepare() { fi ### Enable O3 - if [ -n "$_cc_harder" ] && [ -z "$_cc_size" ]; then + if [ "$_cc_harder" = "yes" ]; then echo "Enabling KBUILD_CFLAGS -O3..." scripts/config -d CC_OPTIMIZE_FOR_PERFORMANCE \ -e CC_OPTIMIZE_FOR_PERFORMANCE_O3 @@ -427,7 +417,7 @@ prepare() { fi ### Enable bbr3 - if [ -n "$_tcp_bbr3" ]; then + if [ "$_tcp_bbr3" = "yes" ]; then echo "Disabling TCP_CONG_CUBIC..." scripts/config -m TCP_CONG_CUBIC \ -d DEFAULT_CUBIC \ @@ -441,8 +431,6 @@ prepare() { fi ### Select THP - [ -z "$_hugepage" ] && _die "The value is empty. Choose the correct one again." - 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;; @@ -456,7 +444,7 @@ prepare() { ### Optionally use running kernel's config # code originally by nous; http://aur.archlinux.org/packages.php?ID=40191 - if [ -n "$_use_current" ]; then + if [ "$_use_current" = "yes" ]; then if [[ -s /proc/config.gz ]]; then echo "Extracting config from /proc/config.gz..." # modprobe configs @@ -469,10 +457,9 @@ prepare() { fi fi - ### Optionally load needed modules for the make localmodconfig # See https://aur.archlinux.org/packages/modprobed-db - if [ -n "$_localmodcfg" ]; then + if [ "$_localmodcfg" = "yes" ]; then if [ -e "$_localmodcfg_path" ]; then echo "Running Steven Rostedt's make localmodconfig now" make "${BUILD_FLAGS[@]}" LSMOD="${_localmodcfg_path}" localmodconfig @@ -492,23 +479,23 @@ prepare() { echo "Prepared $pkgbase version $( "${basedir}/config-${pkgver}-${pkgrel}${pkgbase#linux}" - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then cd "${srcdir}" sh "${_nv_pkg}.run" --extract-only @@ -516,7 +503,7 @@ prepare() { patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_pkg}/kernel" fi - if [ -n "$_build_nvidia_open" ]; then + if [ "$_build_nvidia_open" = "yes" ]; then patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_open_pkg}/kernel-open" # Fix for Zen5 error print in dmesg patch -Np1 --no-backup-if-mismatch -i "${srcdir}/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" -d "${srcdir}/${_nv_open_pkg}" @@ -540,20 +527,20 @@ build() { SYSSRC="${srcdir}/${_srcname}" SYSOUT="${srcdir}/${_srcname}" ) - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then MODULE_FLAGS+=(NV_EXCLUDE_BUILD_MODULES='__EXCLUDE_MODULES') cd "${srcdir}/${_nv_pkg}/kernel" make "${BUILD_FLAGS[@]}" "${MODULE_FLAGS[@]}" -j"$(nproc)" modules fi - if [ -n "$_build_nvidia_open" ]; then + 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 [ -n "$_build_zfs" ]; then + if [ "$_build_zfs" = "yes" ]; then cd ${srcdir}/"zfs" local CONFIGURE_FLAGS=() @@ -745,11 +732,11 @@ _package-nvidia-open(){ } pkgname=("$pkgbase") -[ -n "$_build_debug" ] && pkgname+=("$pkgbase-dbg") +[ "$_build_debug" = "yes" ] && pkgname+=("$pkgbase-dbg") pkgname+=("$pkgbase-headers") -[ -n "$_build_zfs" ] && pkgname+=("$pkgbase-zfs") -[ -n "$_build_nvidia" ] && pkgname+=("$pkgbase-nvidia") -[ -n "$_build_nvidia_open" ] && pkgname+=("$pkgbase-nvidia-open") +[ "$_build_zfs" = "yes" ] && pkgname+=("$pkgbase-zfs") +[ "$_build_nvidia" = "yes" ] && pkgname+=("$pkgbase-nvidia") +[ "$_build_nvidia_open" = "yes" ] && pkgname+=("$pkgbase-nvidia-open") for _p in "${pkgname[@]}"; do eval "package_$_p() { $(declare -f "_package${_p#$pkgbase}") diff --git a/linux-cachyos-hardened/PKGBUILD b/linux-cachyos-hardened/PKGBUILD index 59f38f7e..0d210b2c 100644 --- a/linux-cachyos-hardened/PKGBUILD +++ b/linux-cachyos-hardened/PKGBUILD @@ -9,7 +9,7 @@ # Set these variables to ANYTHING that is not null or choose proper variable to enable them ### Selecting CachyOS config -: "${_cachy_config:=y}" +: "${_cachy_config:=yes}" ### Selecting the CPU scheduler # ATTENTION - only one of the following values can be selected: @@ -23,22 +23,22 @@ : "${_cpusched:=hardened}" ### Tweak kernel options prior to a build via nconfig -: "${_makenconfig:=}" +: "${_makenconfig:=no}" ### Tweak kernel options prior to a build via menuconfig -: "${_makemenuconfig:=}" +: "${_makemenuconfig:=no}" ### Tweak kernel options prior to a build via xconfig -: "${_makexconfig:=}" +: "${_makexconfig:=no}" ### Tweak kernel options prior to a build via gconfig -: "${_makegconfig:=}" +: "${_makegconfig:=no}" # NUMA is optimized for multi-socket motherboards. # A single multi-core CPU actually runs slower with NUMA enabled. # See, https://bugs.archlinux.org/task/31187 # It seems that in 2023 this is not really a huge regression anymore -: "${_NUMAdisable:=}" +: "${_NUMAdisable:=no}" # Compile ONLY used modules to VASTLYreduce the number of modules built # and the build time. @@ -48,7 +48,7 @@ # This PKGBUILD read the database kept if it exists # # More at this wiki page ---> https://wiki.archlinux.org/index.php/Modprobed-db -: "${_localmodcfg:=}" +: "${_localmodcfg:=no}" # Path to the list of used modules : "${_localmodcfg_path:="$HOME/.config/modprobed.db"}" @@ -58,16 +58,16 @@ # 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:=}" +: "${_use_current:=no}" ### Enable KBUILD_CFLAGS -O3 -: "${_cc_harder:=y}" +: "${_cc_harder:=yes}" ### Set performance governor as default -: "${_per_gov:=}" +: "${_per_gov:=no}" ### Enable TCP_CONG_BBR3 -: "${_tcp_bbr3:=}" +: "${_tcp_bbr3:=no}" ### Running with a 1000HZ, 750Hz, 625Hz, 600 Hz, 500Hz, 300Hz, 250Hz and 100Hz tick rate : "${_HZ_ticks:=1000}" @@ -98,7 +98,7 @@ : "${_processor_opt:=}" # This does automatically detect your supported CPU and optimizes for it -: "${_use_auto_optimization:=y}" +: "${_use_auto_optimization:=yes}" # Clang LTO mode, only available with the "llvm" compiler - options are "none", "full" or "thin". # ATTENTION - one of three predefined values should be selected! @@ -109,38 +109,38 @@ # Use suffix -lto only when requested by the user # Enabled by default. -# y - enable -lto suffix -# n - disable -lto suffix +# yes - enable -lto suffix +# no - disable -lto suffix # https://github.com/CachyOS/linux-cachyos/issues/36 -: "${_use_lto_suffix:=y}" +: "${_use_lto_suffix:=yes}" # Use suffix -gcc when requested by the user # This was added to facilitate https://github.com/CachyOS/linux-cachyos/issues/286 -: "${_use_gcc_suffix:=}" +: "${_use_gcc_suffix:=no}" # 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:=}" +: "${_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:=}" +: "${_build_zfs:=no}" # Builds the nvidia module and package it into a own base # This does replace the requirement of nvidia-dkms -: "${_build_nvidia:=}" +: "${_build_nvidia:=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:=}" +: "${_build_nvidia_open:=no}" # Build a debug package with non-stripped vmlinux -: "${_build_debug:=}" +: "${_build_debug:=no}" # ATTENTION: Do not modify after this line _is_lto_kernel() { @@ -148,9 +148,10 @@ _is_lto_kernel() { return $? } -if _is_lto_kernel && [ "$_use_lto_suffix" = "y" ]; then - _pkgsuffix="cachyos-${_cpusched}-lto" -elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "y" ]; then + +if _is_lto_kernel && [ "$_use_lto_suffix" = "yes" ]; then + _pkgsuffix="cachyos-${_cpusched}-lto" +elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "yes" ]; then _pkgsuffix="cachyos-${_cpusched}-gcc" else _pkgsuffix="cachyos-${_cpusched}" @@ -199,7 +200,11 @@ source=( "${_patchsource}/all/0001-cachyos-base-all.patch") # LLVM makedepends +<<<<<<< HEAD if _is_lto_kernel; then +======= +if [[ "$_use_llvm_lto" = "thin" || "$_use_llvm_lto" = "full" ]] || [ "$_use_kcfi" = "yes" ]; then +>>>>>>> b8424baa (Unify values for options that accept a boolean value) makedepends+=(clang llvm lld) source+=("${_patchsource}/misc/dkms-clang.patch") BUILD_FLAGS=( @@ -216,18 +221,18 @@ if [[ "$_cpusched" = "rt" || "$_cpusched" = "rt-bore" ]]; then fi # ZFS support -if [ -n "$_build_zfs" ]; then +if [ "$_build_zfs" = "yes" ]; then makedepends+=(git) source+=("git+https://github.com/cachyos/zfs.git#commit=e65f69e41f4a276d7d0d1800a2878308a0ba84a6") fi # NVIDIA pre-build module support -if [ -n "$_build_nvidia" ]; then +if [ "$_build_nvidia" = "yes" ]; then source+=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${_nv_ver}/${_nv_pkg}.run" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch") fi -if [ -n "$_build_nvidia_open" ]; then +if [ "$_build_nvidia_open" = "yes" ]; then source+=("nvidia-open-${_nv_ver}.tar.gz::https://github.com/NVIDIA/open-gpu-kernel-modules/archive/refs/tags/${_nv_ver}.tar.gz" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch" "${_patchsource}/misc/nvidia/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" @@ -294,19 +299,17 @@ prepare() { fi ### Use autooptimization - if [ -n "$_use_auto_optimization" ]; then + if [ "$_use_auto_optimization" = "yes" ]; then "${srcdir}"/auto-cpu-optimization.sh fi ### Selecting CachyOS config - if [ -n "$_cachy_config" ]; then + if [ "$_cachy_config" = "yes" ]; then echo "Enabling CachyOS config..." scripts/config -e CACHY fi ### Selecting the CPU scheduler - [ -z "$_cpusched" ] && _die "The value is empty. Choose the correct one again." - case "$_cpusched" in cachyos|bore|hardened) scripts/config -e SCHED_BORE;; bmq) scripts/config -e SCHED_ALT -e SCHED_BMQ;; @@ -319,14 +322,12 @@ prepare() { echo "Selecting ${_cpusched^^} CPU scheduler..." ### Enable KCFI - if [ -n "$_use_kcfi" ]; then + 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 - [ -z "$_use_llvm_lto" ] && _die "The value is empty. Choose the correct one again." - case "$_use_llvm_lto" in thin) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -d LTO_CLANG_FULL -e LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; full) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -e LTO_CLANG_FULL -d LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; @@ -337,8 +338,6 @@ prepare() { echo "Selecting '$_use_llvm_lto' LLVM level..." ### Select tick rate - [ -z "$_HZ_ticks" ] && _die "The value is empty. Choose the correct one again." - case "$_HZ_ticks" in 100|250|500|600|625|750|1000) scripts/config -d HZ_300 -e "HZ_${_HZ_ticks}" --set-val HZ "${_HZ_ticks}";; @@ -351,7 +350,7 @@ prepare() { echo "Setting tick rate to ${_HZ_ticks}Hz..." ### Disable NUMA - if [ -n "$_NUMAdisable" ]; then + if [ "$_NUMAdisable" = "yes" ]; then echo "Disabling NUMA from kernel config..." scripts/config -d NUMA \ -d AMD_NUMA \ @@ -369,15 +368,13 @@ prepare() { fi ### Select performance governor - if [ -n "$_per_gov" ]; then + 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 - [ -z "$_tickrate" ] && _die "The value is empty. Choose the correct one again." - case "$_tickrate" in perodic) 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;; @@ -391,8 +388,6 @@ prepare() { # We should not set up the PREEMPT for RT kernels if [[ "$_cpusched" != "rt" || "$_cpusched" != "rt-bore" ]]; then - [ -z "$_preempt" ] && _die "The value is empty. Choose the correct one again." - case "$_preempt" in full) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -d PREEMPT_VOLUNTARY -e PREEMPT -e PREEMPT_COUNT -e PREEMPTION -e PREEMPT_DYNAMIC;; voluntary) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -e PREEMPT_VOLUNTARY -d PREEMPT -e PREEMPT_COUNT -e PREEMPTION -d PREEMPT_DYNAMIC;; @@ -404,7 +399,7 @@ prepare() { fi ### Enable O3 - if [ -n "$_cc_harder" ] && [ -z "$_cc_size" ]; then + if [ "$_cc_harder" = "yes" ]; then echo "Enabling KBUILD_CFLAGS -O3..." scripts/config -d CC_OPTIMIZE_FOR_PERFORMANCE \ -e CC_OPTIMIZE_FOR_PERFORMANCE_O3 @@ -427,7 +422,7 @@ prepare() { fi ### Enable bbr3 - if [ -n "$_tcp_bbr3" ]; then + if [ "$_tcp_bbr3" = "yes" ]; then echo "Disabling TCP_CONG_CUBIC..." scripts/config -m TCP_CONG_CUBIC \ -d DEFAULT_CUBIC \ @@ -441,8 +436,6 @@ prepare() { fi ### Select THP - [ -z "$_hugepage" ] && _die "The value is empty. Choose the correct one again." - 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;; @@ -456,7 +449,7 @@ prepare() { ### Optionally use running kernel's config # code originally by nous; http://aur.archlinux.org/packages.php?ID=40191 - if [ -n "$_use_current" ]; then + if [ "$_use_current" = "yes" ]; then if [[ -s /proc/config.gz ]]; then echo "Extracting config from /proc/config.gz..." # modprobe configs @@ -469,10 +462,9 @@ prepare() { fi fi - ### Optionally load needed modules for the make localmodconfig # See https://aur.archlinux.org/packages/modprobed-db - if [ -n "$_localmodcfg" ]; then + if [ "$_localmodcfg" = "yes" ]; then if [ -e "$_localmodcfg_path" ]; then echo "Running Steven Rostedt's make localmodconfig now" make "${BUILD_FLAGS[@]}" LSMOD="${_localmodcfg_path}" localmodconfig @@ -492,23 +484,23 @@ prepare() { echo "Prepared $pkgbase version $( "${basedir}/config-${pkgver}-${pkgrel}${pkgbase#linux}" - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then cd "${srcdir}" sh "${_nv_pkg}.run" --extract-only @@ -516,7 +508,7 @@ prepare() { patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_pkg}/kernel" fi - if [ -n "$_build_nvidia_open" ]; then + if [ "$_build_nvidia_open" = "yes" ]; then patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_open_pkg}/kernel-open" # Fix for Zen5 error print in dmesg patch -Np1 --no-backup-if-mismatch -i "${srcdir}/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" -d "${srcdir}/${_nv_open_pkg}" @@ -539,20 +531,20 @@ build() { SYSSRC="${srcdir}/${_srcname}" SYSOUT="${srcdir}/${_srcname}" ) - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then MODULE_FLAGS+=(NV_EXCLUDE_BUILD_MODULES='__EXCLUDE_MODULES') cd "${srcdir}/${_nv_pkg}/kernel" make "${BUILD_FLAGS[@]}" "${MODULE_FLAGS[@]}" -j"$(nproc)" modules fi - if [ -n "$_build_nvidia_open" ]; then + 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 [ -n "$_build_zfs" ]; then + if [ "$_build_zfs" = "yes" ]; then cd ${srcdir}/"zfs" local CONFIGURE_FLAGS=() @@ -743,11 +735,11 @@ _package-nvidia-open(){ } pkgname=("$pkgbase") -[ -n "$_build_debug" ] && pkgname+=("$pkgbase-dbg") +[ "$_build_debug" = "yes" ] && pkgname+=("$pkgbase-dbg") pkgname+=("$pkgbase-headers") -[ -n "$_build_zfs" ] && pkgname+=("$pkgbase-zfs") -[ -n "$_build_nvidia" ] && pkgname+=("$pkgbase-nvidia") -[ -n "$_build_nvidia_open" ] && pkgname+=("$pkgbase-nvidia-open") +[ "$_build_zfs" = "yes" ] && pkgname+=("$pkgbase-zfs") +[ "$_build_nvidia" = "yes" ] && pkgname+=("$pkgbase-nvidia") +[ "$_build_nvidia_open" = "yes" ] && pkgname+=("$pkgbase-nvidia-open") for _p in "${pkgname[@]}"; do eval "package_$_p() { $(declare -f "_package${_p#$pkgbase}") diff --git a/linux-cachyos-lts/PKGBUILD b/linux-cachyos-lts/PKGBUILD index b0c7249a..deea4c93 100644 --- a/linux-cachyos-lts/PKGBUILD +++ b/linux-cachyos-lts/PKGBUILD @@ -9,7 +9,7 @@ # Set these variables to ANYTHING that is not null or choose proper variable to enable them ### Selecting CachyOS config -: "${_cachy_config:=y}" +: "${_cachy_config:=yes}" ### Selecting the CPU scheduler # ATTENTION - only one of the following values can be selected: @@ -23,22 +23,22 @@ : "${_cpusched:=cachyos}" ### Tweak kernel options prior to a build via nconfig -: "${_makenconfig:=}" +: "${_makenconfig:=no}" ### Tweak kernel options prior to a build via menuconfig -: "${_makemenuconfig:=}" +: "${_makemenuconfig:=no}" ### Tweak kernel options prior to a build via xconfig -: "${_makexconfig:=}" +: "${_makexconfig:=no}" ### Tweak kernel options prior to a build via gconfig -: "${_makegconfig:=}" +: "${_makegconfig:=no}" # NUMA is optimized for multi-socket motherboards. # A single multi-core CPU actually runs slower with NUMA enabled. # See, https://bugs.archlinux.org/task/31187 # It seems that in 2023 this is not really a huge regression anymore -: "${_NUMAdisable:=}" +: "${_NUMAdisable:=no}" # Compile ONLY used modules to VASTLYreduce the number of modules built # and the build time. @@ -48,7 +48,7 @@ # This PKGBUILD read the database kept if it exists # # More at this wiki page ---> https://wiki.archlinux.org/index.php/Modprobed-db -: "${_localmodcfg:=}" +: "${_localmodcfg:=no}" # Path to the list of used modules : "${_localmodcfg_path:="$HOME/.config/modprobed.db"}" @@ -58,19 +58,19 @@ # 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:=}" +: "${_use_current:=no}" ### Enable KBUILD_CFLAGS -O3 -: "${_cc_harder:=y}" +: "${_cc_harder:=yes}" ### Set this to your number of threads you have in your machine otherwise it will default to 320 -: "${_nr_cpus:=}" +: "${_nr_cpus:=320}" ### Set performance governor as default -: "${_per_gov:=}" +: "${_per_gov:=no}" ### Enable TCP_CONG_BBR3 -: "${_tcp_bbr3:=}" +: "${_tcp_bbr3:=no}" ### Running with a 1000HZ, 750Hz, 600 Hz, 500Hz, 300Hz, 250Hz and 100Hz tick rate : "${_HZ_ticks:=1000}" @@ -105,7 +105,7 @@ : "${_hugepage:=always}" ## Enable DAMON -_damon=${_damon-} +: "${_damon:=no}" # CPU compiler optimizations - Defaults to prompt at kernel config if left empty # AMD CPUs : "k8" "k8sse3" "k10" "barcelona" "bobcat" "jaguar" "bulldozer" "piledriver" "steamroller" "excavator" "zen" "zen2" "zen3" "zen4" @@ -118,10 +118,10 @@ _damon=${_damon-} # Or use the _use_auto_optimization with _use_auto_optimization=y : "${_processor_opt:=}" -: "${_use_auto_optimization:=y}" +: "${_use_auto_optimization:=yes}" # disable debug to lower the size of the kernel -: "${_disable_debug:=}" +: "${_disable_debug:=no}" # Clang LTO mode, only available with the "llvm" compiler - options are "none", "full" or "thin". # ATTENTION - one of three predefined values should be selected! @@ -132,14 +132,14 @@ _damon=${_damon-} # Use suffix -lto only when requested by the user # Enabled by default. -# y - enable -lto suffix -# n - disable -lto suffix +# yes - enable -lto suffix +# no - disable -lto suffix # https://github.com/CachyOS/linux-cachyos/issues/36 -: "${_use_lto_suffix:=y}" +: "${_use_lto_suffix:=yes}" # Use suffix -gcc when requested by the user # This was added to facilitate https://github.com/CachyOS/linux-cachyos/issues/286 -: "${_use_gcc_suffix:=}" +: "${_use_gcc_suffix:=no}" # KCFI is a proposed forward-edge control-flow integrity scheme for # Clang, which is more suitable for kernel use than the existing CFI @@ -147,31 +147,31 @@ _damon=${_damon-} # alter function references to point to a jump table, and won't break # function address equality. # ATTENTION!: kCFI is only available in llvm 16 -: "${_use_kcfi:=}" +: "${_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:=}" +: "${_build_zfs:=no}" # Builds the nvidia module and package it into a own base # This does replace the requirement of nvidia-dkms -: "${_build_nvidia:=}" +: "${_build_nvidia:=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:=}" +: "${_build_nvidia_open:=no}" # Enable bcachefs -: "${_bcachefs:=}" +: "${_bcachefs:=no}" # Build a debug package with non-stripped vmlinux -: "${_build_debug:=}" +: "${_build_debug:=no}" -if [[ "$_use_llvm_lto" = "thin" || "$_use_llvm_lto" = "full" ]] && [ "$_use_lto_suffix" = "y" ]; then +if [[ "$_use_llvm_lto" = "thin" || "$_use_llvm_lto" = "full" ]] && [ "$_use_lto_suffix" = "yes" ]; then _pkgsuffix="cachyos-lts-lto" -elif [ "$_use_llvm_lto" = "none" ] && [ -z "$_use_kcfi" ] && [ "$_use_gcc_suffix" = "y" ]; then +elif [ "$_use_llvm_lto" = "none" ] && [ "$_use_kcfi" != "yes" ] && [ "$_use_gcc_suffix" = "yes" ]; then _pkgsuffix="cachyos-lts-gcc" else _pkgsuffix="cachyos-lts" @@ -220,7 +220,7 @@ source=( "${_patchsource}/all/0001-cachyos-base-all.patch") # LLVM makedepends -if [[ "$_use_llvm_lto" = "thin" || "$_use_llvm_lto" = "full" ]] || [ -n "$_use_kcfi" ]; then +if [[ "$_use_llvm_lto" = "thin" || "$_use_llvm_lto" = "full" ]] || [ "$_use_kcfi" = "yes" ]; then makedepends+=(clang llvm lld) source+=("${_patchsource}/misc/dkms-clang.patch") BUILD_FLAGS=( @@ -237,18 +237,18 @@ if [[ "$_cpusched" = "rt" || "$_cpusched" = "rt-bore" ]]; then fi # ZFS support -if [ -n "$_build_zfs" ]; then +if [ "$_build_zfs" = "yes" ]; then makedepends+=(git) source+=("git+https://github.com/cachyos/zfs.git#commit=e65f69e41f4a276d7d0d1800a2878308a0ba84a6") fi # NVIDIA pre-build module support -if [ -n "$_build_nvidia" ]; then +if [ "$_build_nvidia" = "yes" ]; then source+=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${_nv_ver}/${_nv_pkg}.run" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch") fi -if [ -n "$_build_nvidia_open" ]; then +if [ "$_build_nvidia_open" = "yes" ]; then source+=("nvidia-open-${_nv_ver}.tar.gz::https://github.com/NVIDIA/open-gpu-kernel-modules/archive/refs/tags/${_nv_ver}.tar.gz" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch" "${_patchsource}/misc/nvidia/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" @@ -277,7 +277,7 @@ case "$_cpusched" in esac ## bcachefs Support -if [ -n "$_bcachefs" ]; then +if [ "$_bcachefs" = "yes" ]; then source+=("${_patchsource}/misc/0001-bcachefs.patch") fi @@ -326,19 +326,17 @@ prepare() { fi ### Use autooptimization - if [ -n "$_use_auto_optimization" ]; then + if [ "$_use_auto_optimization" = "yes" ]; then "${srcdir}"/auto-cpu-optimization.sh fi ### Selecting CachyOS config - if [ -n "$_cachy_config" ]; then + if [ "$_cachy_config" = "yes" ]; then echo "Enabling CachyOS config..." scripts/config -e CACHY fi ### Selecting the CPU scheduler - [ -z "$_cpusched" ] && _die "The value is empty. Choose the correct one again." - case "$_cpusched" in bore|hardened|cachyos) scripts/config -e SCHED_BORE;; eevdf) ;; @@ -351,15 +349,13 @@ prepare() { echo "Selecting ${_cpusched^^} CPU scheduler..." ### Enable KCFI - if [ -n "$_use_kcfi" ]; then + if [ "$_use_kcfi" = "yes" ]; then echo "Enabling kCFI" scripts/config -e ARCH_SUPPORTS_CFI_CLANG \ -e CFI_CLANG fi ### Select LLVM level - [ -z "$_use_llvm_lto" ] && _die "The value is empty. Choose the correct one again." - case "$_use_llvm_lto" in thin) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -d LTO_CLANG_FULL -e LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; full) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -e LTO_CLANG_FULL -d LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; @@ -370,8 +366,6 @@ prepare() { echo "Selecting '$_use_llvm_lto' LLVM level..." ### Select tick rate - [ -z "$_HZ_ticks" ] && _die "The value is empty. Choose the correct one again." - case "$_HZ_ticks" in 100|250|500|600|750|1000) scripts/config -d HZ_300 -e "HZ_${_HZ_ticks}" --set-val HZ "${_HZ_ticks}";; @@ -384,7 +378,7 @@ prepare() { echo "Setting tick rate to ${_HZ_ticks}Hz..." ### Disable NUMA - if [ -n "$_NUMAdisable" ]; then + if [ "$_NUMAdisable" = "yes" ]; then echo "Disabling NUMA from kernel config..." scripts/config -d NUMA \ -d AMD_NUMA \ @@ -403,25 +397,20 @@ prepare() { ### Setting NR_CPUS if [[ "$_nr_cpus" -ge 2 && "$_nr_cpus" -le 512 ]]; then - echo "Setting custom NR_CPUS..." + echo "Setting NR_CPUS..." scripts/config --set-val NR_CPUS "$_nr_cpus" - elif [ -z "$_nr_cpus" ]; then - echo "Setting default NR_CPUS..." - scripts/config --set-val NR_CPUS 320 else _die "The value '$_nr_cpus' is invalid. Please select a numerical value from 2 to 512..." fi ### Select performance governor - if [ -n "$_per_gov" ]; then + 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 - [ -z "$_tickrate" ] && _die "The value is empty. Choose the correct one again." - case "$_tickrate" in perodic) 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;; @@ -435,8 +424,6 @@ prepare() { # We should not set up the PREEMPT for RT kernels if [[ "$_cpusched" != "rt" || "$_cpusched" != "rt-bore" ]]; then - [ -z "$_preempt" ] && _die "The value is empty. Choose the correct one again." - case "$_preempt" in full) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -d PREEMPT_VOLUNTARY -e PREEMPT -e PREEMPT_COUNT -e PREEMPTION -e PREEMPT_DYNAMIC;; voluntary) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -e PREEMPT_VOLUNTARY -d PREEMPT -e PREEMPT_COUNT -e PREEMPTION -d PREEMPT_DYNAMIC;; @@ -448,7 +435,7 @@ prepare() { fi ### Enable O3 - if [ -n "$_cc_harder" ] && [ -z "$_cc_size" ]; then + if [ "$_cc_harder" = "yes" ]; then echo "Enabling KBUILD_CFLAGS -O3..." scripts/config -d CC_OPTIMIZE_FOR_PERFORMANCE \ -e CC_OPTIMIZE_FOR_PERFORMANCE_O3 @@ -471,7 +458,7 @@ prepare() { fi ### Enable bbr3 - if [ -n "$_tcp_bbr3" ]; then + if [ "$_tcp_bbr3" = "yes" ]; then echo "Disabling TCP_CONG_CUBIC..." scripts/config -m TCP_CONG_CUBIC \ -d DEFAULT_CUBIC \ @@ -485,8 +472,6 @@ prepare() { fi ### Select LRU config - [ -z "$_lru_config" ] && _die "The value is empty. Choose the correct one again." - case "$_lru_config" in standard) scripts/config -e LRU_GEN -e LRU_GEN_ENABLED -d LRU_GEN_STATS;; stats) scripts/config -e LRU_GEN -e LRU_GEN_ENABLED -e LRU_GEN_STATS;; @@ -497,8 +482,6 @@ prepare() { echo "Selecting '$_lru_config' LRU_GEN config..." ### Select VMA config - [ -z "$_vma_config" ] && _die "The value is empty. Choose the correct one again." - case "$_vma_config" in standard) scripts/config -e PER_VMA_LOCK -d PER_VMA_LOCK_STATS;; stats) scripts/config -e PER_VMA_LOCK -e PER_VMA_LOCK_STATS;; @@ -509,8 +492,6 @@ prepare() { echo "Selecting '$_vma_config' PER_VMA_LOCK config..." ### Select THP - [ -z "$_hugepage" ] && _die "The value is empty. Choose the correct one again." - 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;; @@ -520,7 +501,7 @@ prepare() { echo "Selecting '$_hugepage' TRANSPARENT_HUGEPAGE config..." ### Enable DAMON - if [ -n "$_damon" ]; then + if [ "$_damon" = "yes" ]; then echo "Enabling DAMON..." scripts/config -e DAMON \ -e DAMON_VADDR \ @@ -536,7 +517,7 @@ prepare() { ### Disable DEBUG # Doesn't work with sched-ext # More infos here: https://github.com/CachyOS/linux-cachyos/issues/187 - if [[ "$_cpusched" != "sched-ext" && -n "$_disable_debug" ]]; then + if [[ "$_cpusched" != "sched-ext" && "$_disable_debug" = "yes" ]]; then scripts/config -d DEBUG_INFO \ -d DEBUG_INFO_BTF \ -d DEBUG_INFO_DWARF4 \ @@ -558,7 +539,7 @@ prepare() { ### Optionally use running kernel's config # code originally by nous; http://aur.archlinux.org/packages.php?ID=40191 - if [ -n "$_use_current" ]; then + if [ "$_use_current" = "yes" ]; then if [[ -s /proc/config.gz ]]; then echo "Extracting config from /proc/config.gz..." # modprobe configs @@ -571,10 +552,9 @@ prepare() { fi fi - ### Optionally load needed modules for the make localmodconfig # See https://aur.archlinux.org/packages/modprobed-db - if [ -n "$_localmodcfg" ]; then + if [ "$_localmodcfg" = "yes" ]; then if [ -e "$_localmodcfg_path" ]; then echo "Running Steven Rostedt's make localmodconfig now" make "${BUILD_FLAGS[@]}" LSMOD="${_localmodcfg_path}" localmodconfig @@ -594,23 +574,23 @@ prepare() { echo "Prepared $pkgbase version $( "${basedir}/config-${pkgver}-${pkgrel}${pkgbase#linux}" - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then cd "${srcdir}" sh "${_nv_pkg}.run" --extract-only @@ -618,7 +598,7 @@ prepare() { patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_pkg}/kernel" fi - if [ -n "$_build_nvidia_open" ]; then + if [ "$_build_nvidia_open" = "yes" ]; then patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_open_pkg}/kernel-open" # Fix for https://bugs.archlinux.org/task/74886 patch -Np1 --no-backup-if-mismatch -i "${srcdir}/0003-Add-IBT-Support.patch" -d "${srcdir}/${_nv_open_pkg}" @@ -642,20 +622,20 @@ build() { SYSSRC="${srcdir}/${_srcname}" SYSOUT="${srcdir}/${_srcname}" ) - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then MODULE_FLAGS+=(NV_EXCLUDE_BUILD_MODULES='__EXCLUDE_MODULES') cd "${srcdir}/${_nv_pkg}/kernel" make "${BUILD_FLAGS[@]}" "${MODULE_FLAGS[@]}" -j"$(nproc)" modules fi - if [ -n "$_build_nvidia_open" ]; then + 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 [ -n "$_build_zfs" ]; then + if [ "$_build_zfs" = "yes" ]; then cd ${srcdir}/"zfs" local CONFIGURE_FLAGS=() @@ -846,11 +826,11 @@ _package-nvidia-open(){ } pkgname=("$pkgbase") -[ -n "$_build_debug" ] && pkgname+=("$pkgbase-dbg") +[ "$_build_debug" = "yes" ] && pkgname+=("$pkgbase-dbg") pkgname+=("$pkgbase-headers") -[ -n "$_build_zfs" ] && pkgname+=("$pkgbase-zfs") -[ -n "$_build_nvidia" ] && pkgname+=("$pkgbase-nvidia") -[ -n "$_build_nvidia_open" ] && pkgname+=("$pkgbase-nvidia-open") +[ "$_build_zfs" = "yes" ] && pkgname+=("$pkgbase-zfs") +[ "$_build_nvidia" = "yes" ] && pkgname+=("$pkgbase-nvidia") +[ "$_build_nvidia_open" = "yes" ] && pkgname+=("$pkgbase-nvidia-open") for _p in "${pkgname[@]}"; do eval "package_$_p() { $(declare -f "_package${_p#$pkgbase}") diff --git a/linux-cachyos-rc/PKGBUILD b/linux-cachyos-rc/PKGBUILD index 2987e6c6..a8b94a5a 100644 --- a/linux-cachyos-rc/PKGBUILD +++ b/linux-cachyos-rc/PKGBUILD @@ -9,7 +9,7 @@ # Set these variables to ANYTHING that is not null or choose proper variable to enable them ### Selecting CachyOS config -: "${_cachy_config:=y}" +: "${_cachy_config:=yes}" ### Selecting the CPU scheduler # ATTENTION - only one of the following values can be selected: @@ -23,22 +23,22 @@ : "${_cpusched:=cachyos}" ### Tweak kernel options prior to a build via nconfig -: "${_makenconfig:=}" +: "${_makenconfig:=no}" ### Tweak kernel options prior to a build via menuconfig -: "${_makemenuconfig:=}" +: "${_makemenuconfig:=no}" ### Tweak kernel options prior to a build via xconfig -: "${_makexconfig:=}" +: "${_makexconfig:=no}" ### Tweak kernel options prior to a build via gconfig -: "${_makegconfig:=}" +: "${_makegconfig:=no}" # NUMA is optimized for multi-socket motherboards. # A single multi-core CPU actually runs slower with NUMA enabled. # See, https://bugs.archlinux.org/task/31187 # It seems that in 2023 this is not really a huge regression anymore -: "${_NUMAdisable:=}" +: "${_NUMAdisable:=no}" # Compile ONLY used modules to VASTLYreduce the number of modules built # and the build time. @@ -48,7 +48,7 @@ # This PKGBUILD read the database kept if it exists # # More at this wiki page ---> https://wiki.archlinux.org/index.php/Modprobed-db -: "${_localmodcfg:=}" +: "${_localmodcfg:=no}" # Path to the list of used modules : "${_localmodcfg_path:="$HOME/.config/modprobed.db"}" @@ -58,16 +58,16 @@ # 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:=}" +: "${_use_current:=no}" ### Enable KBUILD_CFLAGS -O3 -: "${_cc_harder:=y}" +: "${_cc_harder:=yes}" ### Set performance governor as default -: "${_per_gov:=}" +: "${_per_gov:=no}" ### Enable TCP_CONG_BBR3 -: "${_tcp_bbr3:=}" +: "${_tcp_bbr3:=no}" ### Running with a 1000HZ, 750Hz, 625Hz, 600 Hz, 500Hz, 300Hz, 250Hz and 100Hz tick rate : "${_HZ_ticks:=1000}" @@ -98,7 +98,7 @@ : "${_processor_opt:=}" # This does automatically detect your supported CPU and optimizes for it -: "${_use_auto_optimization:=y}" +: "${_use_auto_optimization:=yes}" # Clang LTO mode, only available with the "llvm" compiler - options are "none", "full" or "thin". # ATTENTION - one of three predefined values should be selected! @@ -108,48 +108,48 @@ : "${_use_llvm_lto:=thin}" # Use suffix -lto only when requested by the user -# y - enable -lto suffix -# n - disable -lto suffix +# yes - enable -lto suffix +# no - disable -lto suffix # https://github.com/CachyOS/linux-cachyos/issues/36 -: "${_use_lto_suffix:=}" +: "${_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:=y}" +: "${_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:=}" +: "${_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:=}" +: "${_build_zfs:=no}" # Builds the nvidia module and package it into a own base # This does replace the requirement of nvidia-dkms -: "${_build_nvidia:=}" +: "${_build_nvidia:=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:=}" +: "${_build_nvidia_open:=no}" # Build a debug package with non-stripped vmlinux -: "${_build_debug:=}" +: "${_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=y and _build_debug=y +# 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:=}" +: "${_autofdo:=no}" # Name for the AutoFDO profile : "${_autofdo_profile_name:=}" @@ -161,9 +161,9 @@ _is_lto_kernel() { return $? } -if _is_lto_kernel && [ "$_use_lto_suffix" = "y" ]; then +if _is_lto_kernel && [ "$_use_lto_suffix" = "yes" ]; then _pkgsuffix="cachyos-rc-lto" -elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "y" ]; then +elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "yes" ]; then _pkgsuffix="cachyos-rc-gcc" else _pkgsuffix="cachyos-rc" @@ -229,18 +229,18 @@ if [[ "$_cpusched" = "rt" || "$_cpusched" = "rt-bore" ]]; then fi # ZFS support -if [ -n "$_build_zfs" ]; then +if [ "$_build_zfs" = "yes" ]; then makedepends+=(git) source+=("git+https://github.com/cachyos/zfs.git#commit=e65f69e41f4a276d7d0d1800a2878308a0ba84a6") fi # NVIDIA pre-build module support -if [ -n "$_build_nvidia" ]; then +if [ "$_build_nvidia" = "yes" ]; then source+=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${_nv_ver}/${_nv_pkg}.run" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch") fi -if [ -n "$_build_nvidia_open" ]; then +if [ "$_build_nvidia_open" = "yes" ]; then source+=("nvidia-open-${_nv_ver}.tar.gz::https://github.com/NVIDIA/open-gpu-kernel-modules/archive/refs/tags/${_nv_ver}.tar.gz" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch" "${_patchsource}/misc/nvidia/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" @@ -253,7 +253,7 @@ if [ -n "$_build_nvidia_open" ]; then fi # Use generated AutoFDO Profile -if [ -n "$_autofdo" ] && [ -n "$_autofdo_profile_name" ]; then +if [ "$_autofdo" = "yes" ] && [ -n "$_autofdo_profile_name" ]; then if [ -e "$_autofdo_profile_name" ]; then source+=("$_autofdo_profile_name") else @@ -315,19 +315,17 @@ prepare() { fi ### Use autooptimization - if [ -n "$_use_auto_optimization" ]; then + if [ "$_use_auto_optimization" = "yes" ]; then "${srcdir}"/auto-cpu-optimization.sh fi ### Selecting CachyOS config - if [ -n "$_cachy_config" ]; then + if [ "$_cachy_config" = "yes" ]; then echo "Enabling CachyOS config..." scripts/config -e CACHY fi ### Selecting the CPU scheduler - [ -z "$_cpusched" ] && _die "The value is empty. Choose the correct one again." - case "$_cpusched" in cachyos|bore|hardened) scripts/config -e SCHED_BORE;; bmq) scripts/config -e SCHED_ALT -e SCHED_BMQ;; @@ -342,14 +340,12 @@ prepare() { ### Enable KCFI ### Broken with NVIDIA Driver ### Needs to be reported - if [ -n "$_use_kcfi" ]; then + 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 - [ -z "$_use_llvm_lto" ] && _die "The value is empty. Choose the correct one again." - case "$_use_llvm_lto" in thin) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -d LTO_CLANG_FULL -e LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; full) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -e LTO_CLANG_FULL -d LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; @@ -360,8 +356,6 @@ prepare() { echo "Selecting '$_use_llvm_lto' LLVM level..." ### Select tick rate - [ -z "$_HZ_ticks" ] && _die "The value is empty. Choose the correct one again." - case "$_HZ_ticks" in 100|250|500|600|625|750|1000) scripts/config -d HZ_300 -e "HZ_${_HZ_ticks}" --set-val HZ "${_HZ_ticks}";; @@ -374,7 +368,7 @@ prepare() { echo "Setting tick rate to ${_HZ_ticks}Hz..." ### Disable NUMA - if [ -n "$_NUMAdisable" ]; then + if [ "$_NUMAdisable" = "yes" ]; then echo "Disabling NUMA from kernel config..." scripts/config -d NUMA \ -d AMD_NUMA \ @@ -392,15 +386,13 @@ prepare() { fi ### Select performance governor - if [ -n "$_per_gov" ]; then + 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 - [ -z "$_tickrate" ] && _die "The value is empty. Choose the correct one again." - case "$_tickrate" in perodic) 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;; @@ -414,8 +406,6 @@ prepare() { # We should not set up the PREEMPT for RT kernels if [[ "$_cpusched" != "rt" || "$_cpusched" != "rt-bore" ]]; then - [ -z "$_preempt" ] && _die "The value is empty. Choose the correct one again." - case "$_preempt" in full) scripts/config -e PREEMPT_DYNAMIC -e PREEMPT -d PREEMPT_VOLUNTARY -d PREEMPT_LAZY -d PREEMPT_NONE;; lazy) scripts/config -e PREEMPT_DYNAMIC -d PREEMPT -d PREEMPT_VOLUNTARY -e PREEMPT_LAZY -d PREEMPT_NONE;; @@ -428,7 +418,7 @@ prepare() { fi ### Enable O3 - if [ -n "$_cc_harder" ] && [ -z "$_cc_size" ]; then + if [ "$_cc_harder" = "yes" ]; then echo "Enabling KBUILD_CFLAGS -O3..." scripts/config -d CC_OPTIMIZE_FOR_PERFORMANCE \ -e CC_OPTIMIZE_FOR_PERFORMANCE_O3 @@ -451,7 +441,7 @@ prepare() { fi ### Enable bbr3 - if [ -n "$_tcp_bbr3" ]; then + if [ "$_tcp_bbr3" = "yes" ]; then echo "Disabling TCP_CONG_CUBIC..." scripts/config -m TCP_CONG_CUBIC \ -d DEFAULT_CUBIC \ @@ -465,8 +455,6 @@ prepare() { fi ### Select THP - [ -z "$_hugepage" ] && _die "The value is empty. Choose the correct one again." - 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;; @@ -477,11 +465,11 @@ prepare() { # Enable Clang AutoFDO # Add additonal check if Thin or Full LTO is enabled otherwise die - if [ -n "$_autofdo" ]; then + if [ "$_autofdo" = "yes" ]; then scripts/config -e AUTOFDO_CLANG fi - if [ -n "$_autofdo" ] && [ -n "$_autofdo_profile_name" ]; then + if [ "$_autofdo" = "yes" ] && [ -n "$_autofdo_profile_name" ]; then echo "AutoFDO profile has been found..." BUILD_FLAGS+=(CLANG_AUTOFDO_PROFILE="${srcdir}/${_autofdo_profile_name}") fi @@ -491,7 +479,7 @@ prepare() { ### Optionally use running kernel's config # code originally by nous; http://aur.archlinux.org/packages.php?ID=40191 - if [ -n "$_use_current" ]; then + if [ "$_use_current" = "yes" ]; then if [[ -s /proc/config.gz ]]; then echo "Extracting config from /proc/config.gz..." # modprobe configs @@ -504,10 +492,9 @@ prepare() { fi fi - ### Optionally load needed modules for the make localmodconfig # See https://aur.archlinux.org/packages/modprobed-db - if [ -n "$_localmodcfg" ]; then + if [ "$_localmodcfg" = "yes" ]; then if [ -e "$_localmodcfg_path" ]; then echo "Running Steven Rostedt's make localmodconfig now" make "${BUILD_FLAGS[@]}" LSMOD="${_localmodcfg_path}" localmodconfig @@ -527,23 +514,23 @@ prepare() { echo "Prepared $pkgbase version $( "${basedir}/config-${pkgver}-${pkgrel}${pkgbase#linux}" - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then cd "${srcdir}" sh "${_nv_pkg}.run" --extract-only @@ -551,7 +538,7 @@ prepare() { patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_pkg}/kernel" fi - if [ -n "$_build_nvidia_open" ]; then + if [ "$_build_nvidia_open" = "yes" ]; then patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_open_pkg}/kernel-open" # Fix for Zen5 error print in dmesg patch -Np1 --no-backup-if-mismatch -i "${srcdir}/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" -d "${srcdir}/${_nv_open_pkg}" @@ -579,20 +566,20 @@ build() { SYSSRC="${srcdir}/${_srcname}" SYSOUT="${srcdir}/${_srcname}" ) - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then MODULE_FLAGS+=(NV_EXCLUDE_BUILD_MODULES='__EXCLUDE_MODULES') cd "${srcdir}/${_nv_pkg}/kernel" make "${BUILD_FLAGS[@]}" "${MODULE_FLAGS[@]}" -j"$(nproc)" modules fi - if [ -n "$_build_nvidia_open" ]; then + 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 [ -n "$_build_zfs" ]; then + if [ "$_build_zfs" = "yes" ]; then cd ${srcdir}/"zfs" local CONFIGURE_FLAGS=() @@ -788,11 +775,11 @@ _package-nvidia-open(){ } pkgname=("$pkgbase") -[ -n "$_build_debug" ] && pkgname+=("$pkgbase-dbg") +[ "$_build_debug" = "yes" ] && pkgname+=("$pkgbase-dbg") pkgname+=("$pkgbase-headers") -[ -n "$_build_zfs" ] && pkgname+=("$pkgbase-zfs") -[ -n "$_build_nvidia" ] && pkgname+=("$pkgbase-nvidia") -[ -n "$_build_nvidia_open" ] && pkgname+=("$pkgbase-nvidia-open") +[ "$_build_zfs" = "yes" ] && pkgname+=("$pkgbase-zfs") +[ "$_build_nvidia" = "yes" ] && pkgname+=("$pkgbase-nvidia") +[ "$_build_nvidia_open" = "yes" ] && pkgname+=("$pkgbase-nvidia-open") for _p in "${pkgname[@]}"; do eval "package_$_p() { $(declare -f "_package${_p#$pkgbase}") diff --git a/linux-cachyos-rt-bore/PKGBUILD b/linux-cachyos-rt-bore/PKGBUILD index 5dcdb561..a53e9b3f 100644 --- a/linux-cachyos-rt-bore/PKGBUILD +++ b/linux-cachyos-rt-bore/PKGBUILD @@ -9,7 +9,7 @@ # Set these variables to ANYTHING that is not null or choose proper variable to enable them ### Selecting CachyOS config -: "${_cachy_config:=y}" +: "${_cachy_config:=yes}" ### Selecting the CPU scheduler # ATTENTION - only one of the following values can be selected: @@ -23,22 +23,22 @@ : "${_cpusched:=rt-bore}" ### Tweak kernel options prior to a build via nconfig -: "${_makenconfig:=}" +: "${_makenconfig:=no}" ### Tweak kernel options prior to a build via menuconfig -: "${_makemenuconfig:=}" +: "${_makemenuconfig:=no}" ### Tweak kernel options prior to a build via xconfig -: "${_makexconfig:=}" +: "${_makexconfig:=no}" ### Tweak kernel options prior to a build via gconfig -: "${_makegconfig:=}" +: "${_makegconfig:=no}" # NUMA is optimized for multi-socket motherboards. # A single multi-core CPU actually runs slower with NUMA enabled. # See, https://bugs.archlinux.org/task/31187 # It seems that in 2023 this is not really a huge regression anymore -: "${_NUMAdisable:=}" +: "${_NUMAdisable:=no}" # Compile ONLY used modules to VASTLYreduce the number of modules built # and the build time. @@ -48,7 +48,7 @@ # This PKGBUILD read the database kept if it exists # # More at this wiki page ---> https://wiki.archlinux.org/index.php/Modprobed-db -: "${_localmodcfg:=}" +: "${_localmodcfg:=no}" # Path to the list of used modules : "${_localmodcfg_path:="$HOME/.config/modprobed.db"}" @@ -58,16 +58,16 @@ # 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:=}" +: "${_use_current:=no}" ### Enable KBUILD_CFLAGS -O3 -: "${_cc_harder:=y}" +: "${_cc_harder:=yes}" ### Set performance governor as default -: "${_per_gov:=}" +: "${_per_gov:=no}" ### Enable TCP_CONG_BBR3 -: "${_tcp_bbr3:=}" +: "${_tcp_bbr3:=no}" ### Running with a 1000HZ, 750Hz, 625Hz, 600 Hz, 500Hz, 300Hz, 250Hz and 100Hz tick rate : "${_HZ_ticks:=1000}" @@ -98,7 +98,7 @@ : "${_processor_opt:=}" # This does automatically detect your supported CPU and optimizes for it -: "${_use_auto_optimization:=y}" +: "${_use_auto_optimization:=yes}" # Clang LTO mode, only available with the "llvm" compiler - options are "none", "full" or "thin". # ATTENTION - one of three predefined values should be selected! @@ -109,38 +109,38 @@ # Use suffix -lto only when requested by the user # Enabled by default. -# y - enable -lto suffix -# n - disable -lto suffix +# yes - enable -lto suffix +# no - disable -lto suffix # https://github.com/CachyOS/linux-cachyos/issues/36 -: "${_use_lto_suffix:=y}" +: "${_use_lto_suffix:=yes}" # Use suffix -gcc when requested by the user # This was added to facilitate https://github.com/CachyOS/linux-cachyos/issues/286 -: "${_use_gcc_suffix:=}" +: "${_use_gcc_suffix:=no}" # 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:=}" +: "${_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:=}" +: "${_build_zfs:=no}" # Builds the nvidia module and package it into a own base # This does replace the requirement of nvidia-dkms -: "${_build_nvidia:=}" +: "${_build_nvidia:=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:=}" +: "${_build_nvidia_open:=no}" # Build a debug package with non-stripped vmlinux -: "${_build_debug:=}" +: "${_build_debug:=no}" # ATTENTION: Do not modify after this line _is_lto_kernel() { @@ -148,9 +148,9 @@ _is_lto_kernel() { return $? } -if _is_lto_kernel && [ "$_use_lto_suffix" = "y" ]; then +if _is_lto_kernel && [ "$_use_lto_suffix" = "yes" ]; then _pkgsuffix="cachyos-${_cpusched}-lto" -elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "y" ]; then +elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "yes" ]; then _pkgsuffix="cachyos-${_cpusched}-gcc" else _pkgsuffix="cachyos-${_cpusched}" @@ -216,18 +216,18 @@ if [[ "$_cpusched" = "rt" || "$_cpusched" = "rt-bore" ]]; then fi # ZFS support -if [ -n "$_build_zfs" ]; then +if [ "$_build_zfs" = "yes" ]; then makedepends+=(git) source+=("git+https://github.com/cachyos/zfs.git#commit=e65f69e41f4a276d7d0d1800a2878308a0ba84a6") fi # NVIDIA pre-build module support -if [ -n "$_build_nvidia" ]; then +if [ "$_build_nvidia" = "yes" ]; then source+=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${_nv_ver}/${_nv_pkg}.run" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch") fi -if [ -n "$_build_nvidia_open" ]; then +if [ "$_build_nvidia_open" = "yes" ]; then source+=("nvidia-open-${_nv_ver}.tar.gz::https://github.com/NVIDIA/open-gpu-kernel-modules/archive/refs/tags/${_nv_ver}.tar.gz" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch" "${_patchsource}/misc/nvidia/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" @@ -294,19 +294,17 @@ prepare() { fi ### Use autooptimization - if [ -n "$_use_auto_optimization" ]; then + if [ "$_use_auto_optimization" = "yes" ]; then "${srcdir}"/auto-cpu-optimization.sh fi ### Selecting CachyOS config - if [ -n "$_cachy_config" ]; then + if [ "$_cachy_config" = "yes" ]; then echo "Enabling CachyOS config..." scripts/config -e CACHY fi ### Selecting the CPU scheduler - [ -z "$_cpusched" ] && _die "The value is empty. Choose the correct one again." - case "$_cpusched" in cachyos|bore|hardened) scripts/config -e SCHED_BORE;; bmq) scripts/config -e SCHED_ALT -e SCHED_BMQ;; @@ -319,14 +317,12 @@ prepare() { echo "Selecting ${_cpusched^^} CPU scheduler..." ### Enable KCFI - if [ -n "$_use_kcfi" ]; then + 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 - [ -z "$_use_llvm_lto" ] && _die "The value is empty. Choose the correct one again." - case "$_use_llvm_lto" in thin) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -d LTO_CLANG_FULL -e LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; full) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -e LTO_CLANG_FULL -d LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; @@ -337,8 +333,6 @@ prepare() { echo "Selecting '$_use_llvm_lto' LLVM level..." ### Select tick rate - [ -z "$_HZ_ticks" ] && _die "The value is empty. Choose the correct one again." - case "$_HZ_ticks" in 100|250|500|600|625|750|1000) scripts/config -d HZ_300 -e "HZ_${_HZ_ticks}" --set-val HZ "${_HZ_ticks}";; @@ -351,7 +345,7 @@ prepare() { echo "Setting tick rate to ${_HZ_ticks}Hz..." ### Disable NUMA - if [ -n "$_NUMAdisable" ]; then + if [ "$_NUMAdisable" = "yes" ]; then echo "Disabling NUMA from kernel config..." scripts/config -d NUMA \ -d AMD_NUMA \ @@ -369,15 +363,13 @@ prepare() { fi ### Select performance governor - if [ -n "$_per_gov" ]; then + 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 - [ -z "$_tickrate" ] && _die "The value is empty. Choose the correct one again." - case "$_tickrate" in perodic) 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;; @@ -391,8 +383,6 @@ prepare() { # We should not set up the PREEMPT for RT kernels if [[ "$_cpusched" != "rt" || "$_cpusched" != "rt-bore" ]]; then - [ -z "$_preempt" ] && _die "The value is empty. Choose the correct one again." - case "$_preempt" in full) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -d PREEMPT_VOLUNTARY -e PREEMPT -e PREEMPT_COUNT -e PREEMPTION -e PREEMPT_DYNAMIC;; voluntary) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -e PREEMPT_VOLUNTARY -d PREEMPT -e PREEMPT_COUNT -e PREEMPTION -d PREEMPT_DYNAMIC;; @@ -404,7 +394,7 @@ prepare() { fi ### Enable O3 - if [ -n "$_cc_harder" ] && [ -z "$_cc_size" ]; then + if [ "$_cc_harder" = "yes" ]; then echo "Enabling KBUILD_CFLAGS -O3..." scripts/config -d CC_OPTIMIZE_FOR_PERFORMANCE \ -e CC_OPTIMIZE_FOR_PERFORMANCE_O3 @@ -427,7 +417,7 @@ prepare() { fi ### Enable bbr3 - if [ -n "$_tcp_bbr3" ]; then + if [ "$_tcp_bbr3" = "yes" ]; then echo "Disabling TCP_CONG_CUBIC..." scripts/config -m TCP_CONG_CUBIC \ -d DEFAULT_CUBIC \ @@ -441,8 +431,6 @@ prepare() { fi ### Select THP - [ -z "$_hugepage" ] && _die "The value is empty. Choose the correct one again." - 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;; @@ -456,7 +444,7 @@ prepare() { ### Optionally use running kernel's config # code originally by nous; http://aur.archlinux.org/packages.php?ID=40191 - if [ -n "$_use_current" ]; then + if [ "$_use_current" = "yes" ]; then if [[ -s /proc/config.gz ]]; then echo "Extracting config from /proc/config.gz..." # modprobe configs @@ -469,10 +457,9 @@ prepare() { fi fi - ### Optionally load needed modules for the make localmodconfig # See https://aur.archlinux.org/packages/modprobed-db - if [ -n "$_localmodcfg" ]; then + if [ "$_localmodcfg" = "yes" ]; then if [ -e "$_localmodcfg_path" ]; then echo "Running Steven Rostedt's make localmodconfig now" make "${BUILD_FLAGS[@]}" LSMOD="${_localmodcfg_path}" localmodconfig @@ -492,23 +479,23 @@ prepare() { echo "Prepared $pkgbase version $( "${basedir}/config-${pkgver}-${pkgrel}${pkgbase#linux}" - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then cd "${srcdir}" sh "${_nv_pkg}.run" --extract-only @@ -516,7 +503,7 @@ prepare() { patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_pkg}/kernel" fi - if [ -n "$_build_nvidia_open" ]; then + if [ "$_build_nvidia_open" = "yes" ]; then patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_open_pkg}/kernel-open" # Fix for Zen5 error print in dmesg patch -Np1 --no-backup-if-mismatch -i "${srcdir}/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" -d "${srcdir}/${_nv_open_pkg}" @@ -540,20 +527,20 @@ build() { SYSSRC="${srcdir}/${_srcname}" SYSOUT="${srcdir}/${_srcname}" ) - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then MODULE_FLAGS+=(NV_EXCLUDE_BUILD_MODULES='__EXCLUDE_MODULES') cd "${srcdir}/${_nv_pkg}/kernel" make "${BUILD_FLAGS[@]}" "${MODULE_FLAGS[@]}" -j"$(nproc)" modules fi - if [ -n "$_build_nvidia_open" ]; then + 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 [ -n "$_build_zfs" ]; then + if [ "$_build_zfs" = "yes" ]; then cd ${srcdir}/"zfs" local CONFIGURE_FLAGS=() @@ -745,11 +732,11 @@ _package-nvidia-open(){ } pkgname=("$pkgbase") -[ -n "$_build_debug" ] && pkgname+=("$pkgbase-dbg") +[ "$_build_debug" = "yes" ] && pkgname+=("$pkgbase-dbg") pkgname+=("$pkgbase-headers") -[ -n "$_build_zfs" ] && pkgname+=("$pkgbase-zfs") -[ -n "$_build_nvidia" ] && pkgname+=("$pkgbase-nvidia") -[ -n "$_build_nvidia_open" ] && pkgname+=("$pkgbase-nvidia-open") +[ "$_build_zfs" = "yes" ] && pkgname+=("$pkgbase-zfs") +[ "$_build_nvidia" = "yes" ] && pkgname+=("$pkgbase-nvidia") +[ "$_build_nvidia_open" = "yes" ] && pkgname+=("$pkgbase-nvidia-open") for _p in "${pkgname[@]}"; do eval "package_$_p() { $(declare -f "_package${_p#$pkgbase}") diff --git a/linux-cachyos-server/PKGBUILD b/linux-cachyos-server/PKGBUILD index dda3b7c9..1b64b643 100644 --- a/linux-cachyos-server/PKGBUILD +++ b/linux-cachyos-server/PKGBUILD @@ -9,7 +9,7 @@ # Set these variables to ANYTHING that is not null or choose proper variable to enable them ### Selecting CachyOS config -: "${_cachy_config:=}" +: "${_cachy_config:=no}" ### Selecting the CPU scheduler # ATTENTION - only one of the following values can be selected: @@ -23,22 +23,22 @@ : "${_cpusched:=eevdf}" ### Tweak kernel options prior to a build via nconfig -: "${_makenconfig:=}" +: "${_makenconfig:=no}" ### Tweak kernel options prior to a build via menuconfig -: "${_makemenuconfig:=}" +: "${_makemenuconfig:=no}" ### Tweak kernel options prior to a build via xconfig -: "${_makexconfig:=}" +: "${_makexconfig:=no}" ### Tweak kernel options prior to a build via gconfig -: "${_makegconfig:=}" +: "${_makegconfig:=no}" # NUMA is optimized for multi-socket motherboards. # A single multi-core CPU actually runs slower with NUMA enabled. # See, https://bugs.archlinux.org/task/31187 # It seems that in 2023 this is not really a huge regression anymore -: "${_NUMAdisable:=}" +: "${_NUMAdisable:=no}" # Compile ONLY used modules to VASTLYreduce the number of modules built # and the build time. @@ -48,7 +48,7 @@ # This PKGBUILD read the database kept if it exists # # More at this wiki page ---> https://wiki.archlinux.org/index.php/Modprobed-db -: "${_localmodcfg:=}" +: "${_localmodcfg:=no}" # Path to the list of used modules : "${_localmodcfg_path:="$HOME/.config/modprobed.db"}" @@ -58,16 +58,16 @@ # 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:=}" +: "${_use_current:=no}" ### Enable KBUILD_CFLAGS -O3 -: "${_cc_harder:=y}" +: "${_cc_harder:=yes}" ### Set performance governor as default -: "${_per_gov:=}" +: "${_per_gov:=no}" ### Enable TCP_CONG_BBR3 -: "${_tcp_bbr3:=}" +: "${_tcp_bbr3:=no}" ### Running with a 1000HZ, 750Hz, 625Hz, 600 Hz, 500Hz, 300Hz, 250Hz and 100Hz tick rate : "${_HZ_ticks:=300}" @@ -98,7 +98,7 @@ : "${_processor_opt:=}" # This does automatically detect your supported CPU and optimizes for it -: "${_use_auto_optimization:=y}" +: "${_use_auto_optimization:=yes}" # Clang LTO mode, only available with the "llvm" compiler - options are "none", "full" or "thin". # ATTENTION - one of three predefined values should be selected! @@ -109,38 +109,38 @@ # Use suffix -lto only when requested by the user # Enabled by default. -# y - enable -lto suffix -# n - disable -lto suffix +# yes - enable -lto suffix +# no - disable -lto suffix # https://github.com/CachyOS/linux-cachyos/issues/36 -: "${_use_lto_suffix:=y}" +: "${_use_lto_suffix:=yes}" # Use suffix -gcc when requested by the user # This was added to facilitate https://github.com/CachyOS/linux-cachyos/issues/286 -: "${_use_gcc_suffix:=}" +: "${_use_gcc_suffix:=no}" # 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:=}" +: "${_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:=}" +: "${_build_zfs:=no}" # Builds the nvidia module and package it into a own base # This does replace the requirement of nvidia-dkms -: "${_build_nvidia:=}" +: "${_build_nvidia:=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:=}" +: "${_build_nvidia_open:=yes}" # Build a debug package with non-stripped vmlinux -: "${_build_debug:=}" +: "${_build_debug:=yes}" # ATTENTION: Do not modify after this line _is_lto_kernel() { @@ -148,9 +148,9 @@ _is_lto_kernel() { return $? } -if _is_lto_kernel && [ "$_use_lto_suffix" = "y" ]; then +if _is_lto_kernel && [ "$_use_lto_suffix" = "yes" ]; then _pkgsuffix="cachyos-server-lto" -elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "y" ]; then +elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "yes" ]; then _pkgsuffix="cachyos-server-gcc" else _pkgsuffix="cachyos-server" @@ -216,18 +216,18 @@ if [[ "$_cpusched" = "rt" || "$_cpusched" = "rt-bore" ]]; then fi # ZFS support -if [ -n "$_build_zfs" ]; then +if [ "$_build_zfs" = "yes" ]; then makedepends+=(git) source+=("git+https://github.com/cachyos/zfs.git#commit=e65f69e41f4a276d7d0d1800a2878308a0ba84a6") fi # NVIDIA pre-build module support -if [ -n "$_build_nvidia" ]; then +if [ "$_build_nvidia" = "yes" ]; then source+=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${_nv_ver}/${_nv_pkg}.run" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch") fi -if [ -n "$_build_nvidia_open" ]; then +if [ "$_build_nvidia_open" = "yes" ]; then source+=("nvidia-open-${_nv_ver}.tar.gz::https://github.com/NVIDIA/open-gpu-kernel-modules/archive/refs/tags/${_nv_ver}.tar.gz" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch" "${_patchsource}/misc/nvidia/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" @@ -294,19 +294,17 @@ prepare() { fi ### Use autooptimization - if [ -n "$_use_auto_optimization" ]; then + if [ "$_use_auto_optimization" = "yes" ]; then "${srcdir}"/auto-cpu-optimization.sh fi ### Selecting CachyOS config - if [ -n "$_cachy_config" ]; then + if [ "$_cachy_config" = "yes" ]; then echo "Enabling CachyOS config..." scripts/config -e CACHY fi ### Selecting the CPU scheduler - [ -z "$_cpusched" ] && _die "The value is empty. Choose the correct one again." - case "$_cpusched" in cachyos|bore|hardened) scripts/config -e SCHED_BORE;; bmq) scripts/config -e SCHED_ALT -e SCHED_BMQ;; @@ -319,14 +317,12 @@ prepare() { echo "Selecting ${_cpusched^^} CPU scheduler..." ### Enable KCFI - if [ -n "$_use_kcfi" ]; then + 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 - [ -z "$_use_llvm_lto" ] && _die "The value is empty. Choose the correct one again." - case "$_use_llvm_lto" in thin) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -d LTO_CLANG_FULL -e LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; full) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -e LTO_CLANG_FULL -d LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; @@ -337,8 +333,6 @@ prepare() { echo "Selecting '$_use_llvm_lto' LLVM level..." ### Select tick rate - [ -z "$_HZ_ticks" ] && _die "The value is empty. Choose the correct one again." - case "$_HZ_ticks" in 100|250|500|600|625|750|1000) scripts/config -d HZ_300 -e "HZ_${_HZ_ticks}" --set-val HZ "${_HZ_ticks}";; @@ -351,7 +345,7 @@ prepare() { echo "Setting tick rate to ${_HZ_ticks}Hz..." ### Disable NUMA - if [ -n "$_NUMAdisable" ]; then + if [ "$_NUMAdisable" = "yes" ]; then echo "Disabling NUMA from kernel config..." scripts/config -d NUMA \ -d AMD_NUMA \ @@ -369,15 +363,13 @@ prepare() { fi ### Select performance governor - if [ -n "$_per_gov" ]; then + 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 - [ -z "$_tickrate" ] && _die "The value is empty. Choose the correct one again." - case "$_tickrate" in perodic) 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;; @@ -391,8 +383,6 @@ prepare() { # We should not set up the PREEMPT for RT kernels if [[ "$_cpusched" != "rt" || "$_cpusched" != "rt-bore" ]]; then - [ -z "$_preempt" ] && _die "The value is empty. Choose the correct one again." - case "$_preempt" in full) scripts/config -e PREEMPT_DYNAMIC -e PREEMPT -d PREEMPT_VOLUNTARY -d PREEMPT_NONE;; voluntary) scripts/config -d PREEMPT_DYNAMIC -e PREEMPT_VOLUNTARY_BUILD -d PREEMPT -e PREEMPT_VOLUNTARY -d PREEMPT_NONE;; @@ -404,7 +394,7 @@ prepare() { fi ### Enable O3 - if [ -n "$_cc_harder" ] && [ -z "$_cc_size" ]; then + if [ "$_cc_harder" = "yes" ]; then echo "Enabling KBUILD_CFLAGS -O3..." scripts/config -d CC_OPTIMIZE_FOR_PERFORMANCE \ -e CC_OPTIMIZE_FOR_PERFORMANCE_O3 @@ -427,7 +417,7 @@ prepare() { fi ### Enable bbr3 - if [ -n "$_tcp_bbr3" ]; then + if [ "$_tcp_bbr3" = "yes" ]; then echo "Disabling TCP_CONG_CUBIC..." scripts/config -m TCP_CONG_CUBIC \ -d DEFAULT_CUBIC \ @@ -437,8 +427,6 @@ prepare() { fi ### Select THP - [ -z "$_hugepage" ] && _die "The value is empty. Choose the correct one again." - 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;; @@ -452,7 +440,7 @@ prepare() { ### Optionally use running kernel's config # code originally by nous; http://aur.archlinux.org/packages.php?ID=40191 - if [ -n "$_use_current" ]; then + if [ "$_use_current" = "yes" ]; then if [[ -s /proc/config.gz ]]; then echo "Extracting config from /proc/config.gz..." # modprobe configs @@ -465,10 +453,9 @@ prepare() { fi fi - ### Optionally load needed modules for the make localmodconfig # See https://aur.archlinux.org/packages/modprobed-db - if [ -n "$_localmodcfg" ]; then + if [ "$_localmodcfg" = "yes" ]; then if [ -e "$_localmodcfg_path" ]; then echo "Running Steven Rostedt's make localmodconfig now" make "${BUILD_FLAGS[@]}" LSMOD="${_localmodcfg_path}" localmodconfig @@ -488,23 +475,23 @@ prepare() { echo "Prepared $pkgbase version $( "${basedir}/config-${pkgver}-${pkgrel}${pkgbase#linux}" - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then cd "${srcdir}" sh "${_nv_pkg}.run" --extract-only @@ -512,7 +499,7 @@ prepare() { patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_pkg}/kernel" fi - if [ -n "$_build_nvidia_open" ]; then + if [ "$_build_nvidia_open" = "yes" ]; then patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_open_pkg}/kernel-open" # Fix for Zen5 error print in dmesg patch -Np1 --no-backup-if-mismatch -i "${srcdir}/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" -d "${srcdir}/${_nv_open_pkg}" @@ -536,20 +523,20 @@ build() { SYSSRC="${srcdir}/${_srcname}" SYSOUT="${srcdir}/${_srcname}" ) - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then MODULE_FLAGS+=(NV_EXCLUDE_BUILD_MODULES='__EXCLUDE_MODULES') cd "${srcdir}/${_nv_pkg}/kernel" make "${BUILD_FLAGS[@]}" "${MODULE_FLAGS[@]}" -j"$(nproc)" modules fi - if [ -n "$_build_nvidia_open" ]; then + 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 [ -n "$_build_zfs" ]; then + if [ "$_build_zfs" = "yes" ]; then cd ${srcdir}/"zfs" local CONFIGURE_FLAGS=() @@ -741,11 +728,11 @@ _package-nvidia-open(){ } pkgname=("$pkgbase") -[ -n "$_build_debug" ] && pkgname+=("$pkgbase-dbg") +[ "$_build_debug" = "yes" ] && pkgname+=("$pkgbase-dbg") pkgname+=("$pkgbase-headers") -[ -n "$_build_zfs" ] && pkgname+=("$pkgbase-zfs") -[ -n "$_build_nvidia" ] && pkgname+=("$pkgbase-nvidia") -[ -n "$_build_nvidia_open" ] && pkgname+=("$pkgbase-nvidia-open") +[ "$_build_zfs" = "yes" ] && pkgname+=("$pkgbase-zfs") +[ "$_build_nvidia" = "yes" ] && pkgname+=("$pkgbase-nvidia") +[ "$_build_nvidia_open" = "yes" ] && pkgname+=("$pkgbase-nvidia-open") for _p in "${pkgname[@]}"; do eval "package_$_p() { $(declare -f "_package${_p#$pkgbase}") diff --git a/linux-cachyos/PKGBUILD b/linux-cachyos/PKGBUILD index 901f9040..08a88816 100644 --- a/linux-cachyos/PKGBUILD +++ b/linux-cachyos/PKGBUILD @@ -9,7 +9,7 @@ # Set these variables to ANYTHING that is not null or choose proper variable to enable them ### Selecting CachyOS config -: "${_cachy_config:=y}" +: "${_cachy_config:=yes}" ### Selecting the CPU scheduler # ATTENTION - only one of the following values can be selected: @@ -23,22 +23,22 @@ : "${_cpusched:=cachyos}" ### Tweak kernel options prior to a build via nconfig -: "${_makenconfig:=}" +: "${_makenconfig:=no}" ### Tweak kernel options prior to a build via menuconfig -: "${_makemenuconfig:=}" +: "${_makemenuconfig:=no}" ### Tweak kernel options prior to a build via xconfig -: "${_makexconfig:=}" +: "${_makexconfig:=no}" ### Tweak kernel options prior to a build via gconfig -: "${_makegconfig:=}" +: "${_makegconfig:=no}" # NUMA is optimized for multi-socket motherboards. # A single multi-core CPU actually runs slower with NUMA enabled. # See, https://bugs.archlinux.org/task/31187 # It seems that in 2023 this is not really a huge regression anymore -: "${_NUMAdisable:=}" +: "${_NUMAdisable:=no}" # Compile ONLY used modules to VASTLYreduce the number of modules built # and the build time. @@ -48,7 +48,7 @@ # This PKGBUILD read the database kept if it exists # # More at this wiki page ---> https://wiki.archlinux.org/index.php/Modprobed-db -: "${_localmodcfg:=}" +: "${_localmodcfg:=no}" # Path to the list of used modules : "${_localmodcfg_path:="$HOME/.config/modprobed.db"}" @@ -58,16 +58,16 @@ # 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:=}" +: "${_use_current:=no}" ### Enable KBUILD_CFLAGS -O3 -: "${_cc_harder:=y}" +: "${_cc_harder:=yes}" ### Set performance governor as default -: "${_per_gov:=}" +: "${_per_gov:=no}" ### Enable TCP_CONG_BBR3 -: "${_tcp_bbr3:=}" +: "${_tcp_bbr3:=no}" ### Running with a 1000HZ, 750Hz, 625Hz, 600 Hz, 500Hz, 300Hz, 250Hz and 100Hz tick rate : "${_HZ_ticks:=1000}" @@ -98,7 +98,7 @@ : "${_processor_opt:=}" # This does automatically detect your supported CPU and optimizes for it -: "${_use_auto_optimization:=y}" +: "${_use_auto_optimization:=yes}" # Clang LTO mode, only available with the "llvm" compiler - options are "none", "full" or "thin". # ATTENTION - one of three predefined values should be selected! @@ -108,48 +108,48 @@ : "${_use_llvm_lto:=thin}" # Use suffix -lto only when requested by the user -# y - enable -lto suffix -# n - disable -lto suffix +# yes - enable -lto suffix +# nno - disable -lto suffix # https://github.com/CachyOS/linux-cachyos/issues/36 -: "${_use_lto_suffix:=}" +: "${_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:=y}" +: "${_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:=}" +: "${_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:=}" +: "${_build_zfs:=no}" # Builds the nvidia module and package it into a own base # This does replace the requirement of nvidia-dkms -: "${_build_nvidia:=}" +: "${_build_nvidia:=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:=}" +: "${_build_nvidia_open:=no}" # Build a debug package with non-stripped vmlinux -: "${_build_debug:=}" +: "${_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=y and _build_debug=y +# 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:=}" +: "${_autofdo:=no}" # Name for the AutoFDO profile : "${_autofdo_profile_name:=}" @@ -161,9 +161,9 @@ _is_lto_kernel() { return $? } -if _is_lto_kernel && [ "$_use_lto_suffix" = "y" ]; then +if _is_lto_kernel && [ "$_use_lto_suffix" = "yes" ]; then _pkgsuffix=cachyos-lto -elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "y" ]; then +elif ! _is_lto_kernel && [ "$_use_gcc_suffix" = "yes" ]; then _pkgsuffix=cachyos-gcc else _pkgsuffix=cachyos @@ -229,18 +229,18 @@ if [[ "$_cpusched" = "rt" || "$_cpusched" = "rt-bore" ]]; then fi # ZFS support -if [ -n "$_build_zfs" ]; then +if [ "$_build_zfs" = "yes" ]; then makedepends+=(git) source+=("git+https://github.com/cachyos/zfs.git#commit=e65f69e41f4a276d7d0d1800a2878308a0ba84a6") fi # NVIDIA pre-build module support -if [ -n "$_build_nvidia" ]; then +if [ "$_build_nvidia" = "yes" ]; then source+=("https://us.download.nvidia.com/XFree86/Linux-x86_64/${_nv_ver}/${_nv_pkg}.run" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch") fi -if [ -n "$_build_nvidia_open" ]; then +if [ "$_build_nvidia_open" = "yes" ]; then source+=("nvidia-open-${_nv_ver}.tar.gz::https://github.com/NVIDIA/open-gpu-kernel-modules/archive/refs/tags/${_nv_ver}.tar.gz" "${_patchsource}/misc/nvidia/0001-Make-modeset-and-fbdev-default-enabled.patch" "${_patchsource}/misc/nvidia/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" @@ -250,7 +250,7 @@ if [ -n "$_build_nvidia_open" ]; then fi # Use generated AutoFDO Profile -if [ -n "$_autofdo" ] && [ -n "$_autofdo_profile_name" ]; then +if [ "$_autofdo" = "yes" ] && [ -n "$_autofdo_profile_name" ]; then if [ -e "$_autofdo_profile_name" ]; then source+=("$_autofdo_profile_name") else @@ -316,19 +316,17 @@ prepare() { fi ### Use autooptimization - if [ -n "$_use_auto_optimization" ]; then + if [ "$_use_auto_optimization" = "yes" ]; then "${srcdir}"/auto-cpu-optimization.sh fi ### Selecting CachyOS config - if [ -n "$_cachy_config" ]; then + if [ "$_cachy_config" = "yes" ]; then echo "Enabling CachyOS config..." scripts/config -e CACHY fi ### Selecting the CPU scheduler - [ -z "$_cpusched" ] && _die "The value is empty. Choose the correct one again." - case "$_cpusched" in cachyos|bore|hardened) scripts/config -e SCHED_BORE;; bmq) scripts/config -e SCHED_ALT -e SCHED_BMQ;; @@ -341,14 +339,12 @@ prepare() { echo "Selecting ${_cpusched^^} CPU scheduler..." ### Enable KCFI - if [ -n "$_use_kcfi" ]; then + 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 - [ -z "$_use_llvm_lto" ] && _die "The value is empty. Choose the correct one again." - case "$_use_llvm_lto" in thin) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -d LTO_CLANG_FULL -e LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; full) scripts/config -e LTO -e LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG -e ARCH_SUPPORTS_LTO_CLANG_THIN -d LTO_NONE -e HAS_LTO_CLANG -e LTO_CLANG_FULL -d LTO_CLANG_THIN -e HAVE_GCC_PLUGINS;; @@ -359,8 +355,6 @@ prepare() { echo "Selecting '$_use_llvm_lto' LLVM level..." ### Select tick rate - [ -z "$_HZ_ticks" ] && _die "The value is empty. Choose the correct one again." - case "$_HZ_ticks" in 100|250|500|600|625|750|1000) scripts/config -d HZ_300 -e "HZ_${_HZ_ticks}" --set-val HZ "${_HZ_ticks}";; @@ -373,7 +367,7 @@ prepare() { echo "Setting tick rate to ${_HZ_ticks}Hz..." ### Disable NUMA - if [ -n "$_NUMAdisable" ]; then + if [ "$_NUMAdisable" = "yes" ]; then echo "Disabling NUMA from kernel config..." scripts/config -d NUMA \ -d AMD_NUMA \ @@ -391,15 +385,13 @@ prepare() { fi ### Select performance governor - if [ -n "$_per_gov" ]; then + 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 - [ -z "$_tickrate" ] && _die "The value is empty. Choose the correct one again." - case "$_tickrate" in perodic) 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;; @@ -413,8 +405,6 @@ prepare() { # We should not set up the PREEMPT for RT kernels if [[ "$_cpusched" != "rt" || "$_cpusched" != "rt-bore" ]]; then - [ -z "$_preempt" ] && _die "The value is empty. Choose the correct one again." - case "$_preempt" in full) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -d PREEMPT_VOLUNTARY -e PREEMPT -e PREEMPT_COUNT -e PREEMPTION -e PREEMPT_DYNAMIC;; voluntary) scripts/config -e PREEMPT_BUILD -d PREEMPT_NONE -e PREEMPT_VOLUNTARY -d PREEMPT -e PREEMPT_COUNT -e PREEMPTION -d PREEMPT_DYNAMIC;; @@ -426,7 +416,7 @@ prepare() { fi ### Enable O3 - if [ -n "$_cc_harder" ] && [ -z "$_cc_size" ]; then + if [ "$_cc_harder" = "yes" ]; then echo "Enabling KBUILD_CFLAGS -O3..." scripts/config -d CC_OPTIMIZE_FOR_PERFORMANCE \ -e CC_OPTIMIZE_FOR_PERFORMANCE_O3 @@ -449,7 +439,7 @@ prepare() { fi ### Enable bbr3 - if [ -n "$_tcp_bbr3" ]; then + if [ "$_tcp_bbr3" = "yes" ]; then echo "Disabling TCP_CONG_CUBIC..." scripts/config -m TCP_CONG_CUBIC \ -d DEFAULT_CUBIC \ @@ -463,8 +453,6 @@ prepare() { fi ### Select THP - [ -z "$_hugepage" ] && _die "The value is empty. Choose the correct one again." - 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;; @@ -475,11 +463,11 @@ prepare() { # Enable Clang AutoFDO # Add additonal check if Thin or Full LTO is enabled otherwise die - if [ -n "$_autofdo" ]; then + if [ "$_autofdo" = "yes" ]; then scripts/config -e AUTOFDO_CLANG fi - if [ -n "$_autofdo" ] && [ -n "$_autofdo_profile_name" ]; then + if [ "$_autofdo" = "yes" ] && [ -n "$_autofdo_profile_name" ]; then echo "AutoFDO profile has been found..." BUILD_FLAGS+=(CLANG_AUTOFDO_PROFILE="${srcdir}/${_autofdo_profile_name}") fi @@ -489,7 +477,7 @@ prepare() { ### Optionally use running kernel's config # code originally by nous; http://aur.archlinux.org/packages.php?ID=40191 - if [ -n "$_use_current" ]; then + if [ "$_use_current" = "yes" ]; then if [[ -s /proc/config.gz ]]; then echo "Extracting config from /proc/config.gz..." # modprobe configs @@ -502,10 +490,9 @@ prepare() { fi fi - ### Optionally load needed modules for the make localmodconfig # See https://aur.archlinux.org/packages/modprobed-db - if [ -n "$_localmodcfg" ]; then + if [ "$_localmodcfg" = "yes" ]; then if [ -e "$_localmodcfg_path" ]; then echo "Running Steven Rostedt's make localmodconfig now" make "${BUILD_FLAGS[@]}" LSMOD="${_localmodcfg_path}" localmodconfig @@ -525,23 +512,23 @@ prepare() { echo "Prepared $pkgbase version $( "${basedir}/config-${pkgver}-${pkgrel}${pkgbase#linux}" - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then cd "${srcdir}" sh "${_nv_pkg}.run" --extract-only @@ -549,7 +536,7 @@ prepare() { patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_pkg}/kernel" fi - if [ -n "$_build_nvidia_open" ]; then + if [ "$_build_nvidia_open" = "yes" ]; then patch -Np1 -i "${srcdir}/0001-Make-modeset-and-fbdev-default-enabled.patch" -d "${srcdir}/${_nv_open_pkg}/kernel-open" # Fix for Zen5 error print in dmesg patch -Np1 --no-backup-if-mismatch -i "${srcdir}/0002-Do-not-error-on-unkown-CPU-Type-and-add-Zen5-support.patch" -d "${srcdir}/${_nv_open_pkg}" @@ -573,20 +560,20 @@ build() { SYSSRC="${srcdir}/${_srcname}" SYSOUT="${srcdir}/${_srcname}" ) - if [ -n "$_build_nvidia" ]; then + if [ "$_build_nvidia" = "yes" ]; then MODULE_FLAGS+=(NV_EXCLUDE_BUILD_MODULES='__EXCLUDE_MODULES') cd "${srcdir}/${_nv_pkg}/kernel" make "${BUILD_FLAGS[@]}" "${MODULE_FLAGS[@]}" -j"$(nproc)" modules fi - if [ -n "$_build_nvidia_open" ]; then + 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 [ -n "$_build_zfs" ]; then + if [ "$_build_zfs" = "yes" ]; then cd ${srcdir}/"zfs" local CONFIGURE_FLAGS=() @@ -782,11 +769,11 @@ _package-nvidia-open(){ } pkgname=("$pkgbase") -[ -n "$_build_debug" ] && pkgname+=("$pkgbase-dbg") +[ "$_build_debug" = "yes" ] && pkgname+=("$pkgbase-dbg") pkgname+=("$pkgbase-headers") -[ -n "$_build_zfs" ] && pkgname+=("$pkgbase-zfs") -[ -n "$_build_nvidia" ] && pkgname+=("$pkgbase-nvidia") -[ -n "$_build_nvidia_open" ] && pkgname+=("$pkgbase-nvidia-open") +[ "$_build_zfs" = "yes" ] && pkgname+=("$pkgbase-zfs") +[ "$_build_nvidia" = "yes" ] && pkgname+=("$pkgbase-nvidia") +[ "$_build_nvidia_open" = "yes" ] && pkgname+=("$pkgbase-nvidia-open") for _p in "${pkgname[@]}"; do eval "package_$_p() { $(declare -f "_package${_p#$pkgbase}") diff --git a/script-v3-v4.sh b/script-v3-v4.sh index a77ebbb3..cdb8601f 100755 --- a/script-v3-v4.sh +++ b/script-v3-v4.sh @@ -1,15 +1,15 @@ #!/usr/bin/env bash -find . -name "PKGBUILD" | xargs -I {} sed -i "s/_use_auto_optimization-y/_use_auto_optimization-/" {} +find . -name "PKGBUILD" | xargs -I {} sed -i "s/_use_auto_optimization:=yes/_use_auto_optimization:=no/" {} ## Enable ZFS -find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_zfs-/_build_zfs-y/" {} +find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_zfs:=no/_build_zfs:=yes/" {} ## Enable Generic v3 -find . -name "PKGBUILD" | xargs -I {} sed -i "s/_processor_opt-/_processor_opt-GENERIC_V3/" {} +find . -name "PKGBUILD" | xargs -I {} sed -i "s/_processor_opt:=/_processor_opt:=GENERIC_V3/" {} ## Enable NVIDIA module -find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_nvidia-/_build_nvidia-y/" {} +find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_nvidia:=no/_build_nvidia:=yes/" {} ## Enable Open NVIDIA module -find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_nvidia_open-/_build_nvidia_open-y/" {} +find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_nvidia_open:=no/_build_nvidia_open:=yes/" {} ## Disable clang-LTO -find . -name "PKGBUILD" | xargs -I {} sed -i "s/_use_llvm_lto-thin/_use_llvm_lto-none/" {} +find . -name "PKGBUILD" | xargs -I {} sed -i "s/_use_llvm_lto:=thin/_use_llvm_lto:=none/" {} ## GCC v3 Kernel diff --git a/script-znver4.sh b/script-znver4.sh index 39fb69a6..03e9237b 100755 --- a/script-znver4.sh +++ b/script-znver4.sh @@ -1,13 +1,13 @@ #!/usr/bin/env bash -find . -name "PKGBUILD" | xargs -I {} sed -i "s/_use_auto_optimization-y/_use_auto_optimization-/" {} +find . -name "PKGBUILD" | xargs -I {} sed -i "s/_use_auto_optimization:=yes/_use_auto_optimization:=no/" {} ## Enable ZFS -find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_zfs-/_build_zfs-y/" {} +find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_zfs:=no/_build_zfs:=yes/" {} ## Enable Zen 4 -find . -name "PKGBUILD" | xargs -I {} sed -i "s/_processor_opt-/_processor_opt-zen4/" {} +find . -name "PKGBUILD" | xargs -I {} sed -i "s/_processor_opt:=/_processor_opt:=zen4/" {} ## Enable NVIDIA module -find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_nvidia-/_build_nvidia-y/" {} +find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_nvidia:=no/_build_nvidia:=yes/" {} ## Enable Open NVIDIA module -find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_nvidia_open-/_build_nvidia_open-y/" {} +find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_nvidia_open:=no/_build_nvidia_open:=yes/" {} ## GCC znver4 Kernel diff --git a/script.sh b/script.sh index ad11af61..039a4f51 100755 --- a/script.sh +++ b/script.sh @@ -1,11 +1,11 @@ #!/usr/bin/env bash -find . -name "PKGBUILD" | xargs -I {} sed -i "s/_use_auto_optimization-y/_use_auto_optimization-/" {} +find . -name "PKGBUILD" | xargs -I {} sed -i "s/_use_auto_optimization:=yes/_use_auto_optimization:=no/" {} ## Enable ZFS -find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_zfs-/_build_zfs-y/" {} +find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_zfs:=no/_build_zfs:=yes/" {} ## Enable NVIDIA module -find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_nvidia-/_build_nvidia-y/" {} +find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_nvidia:=no/_build_nvidia:=yes/" {} ## Enable Open NVIDIA module -find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_nvidia_open-/_build_nvidia_open-y/" {} +find . -name "PKGBUILD" | xargs -I {} sed -i "s/_build_nvidia_open:=no/_build_nvidia_open:=yes/" {} files=$(find . -name "PKGBUILD")