Remove NR_CPUS prompt and use defconfig's default if the value is empty instead of an enforced 128.

This commit is contained in:
Tk-Glitch
2022-12-22 15:37:24 +01:00
parent be5dfffb8d
commit 5c3621fc6a
2 changed files with 2 additions and 15 deletions

View File

@@ -264,10 +264,10 @@ _kernel_localversion=""
# Set to "true" to add back missing symbol for AES-NI/AVX support on ZFS - This is a legacy option that can be ignored on 5.10+ kernels - https://github.com/NixOS/nixpkgs/blob/master/pkgs/os-specific/linux/kernel/export_kernel_fpu_functions.patch
_zfsfix="true"
# Set to your maximum number of CPUs (physical + logical cores) - Lower means less overhead - You can set it to "$(nproc)" to use the current host's CPU(s) core count, or leave empty to get a prompt
# Set to your maximum number of CPUs (physical + logical cores) - Lower means less overhead - You can set it to "$(nproc)" to use the current host's CPU(s) core count, or leave empty to use default
# If you set this to a lower value than you have cores, some cores will be disabled
# Default Arch kernel value is 320
_NR_CPUS_value="128"
_NR_CPUS_value=""
#### USER PATCHES ####