kernel config: Cleanup self-test module disabling
No reason to have complex version-dependent conditionals when the question mark already handles this just as well. Also add RUNTIME_TESTING_MENU setting which nicely disables all of this on >= 4.16.
This commit is contained in:
parent
b7b2a4ffa4
commit
db38e0c7e7
@ -630,15 +630,17 @@ with stdenv.lib;
|
|||||||
FW_LOADER_USER_HELPER_FALLBACK? n
|
FW_LOADER_USER_HELPER_FALLBACK? n
|
||||||
|
|
||||||
# Disable various self-test modules that have no use in a production system
|
# Disable various self-test modules that have no use in a production system
|
||||||
${optionalString (versionOlder version "4.4") ''
|
# This menu disables all/most of them on >= 4.16
|
||||||
ARM_KPROBES_TEST? n
|
RUNTIME_TESTING_MENU? n
|
||||||
''}
|
# For older kernels, painstakingly disable each symbol.
|
||||||
|
ARM_KPROBES_TEST? n
|
||||||
ASYNC_RAID6_TEST? n
|
ASYNC_RAID6_TEST? n
|
||||||
ATOMIC64_SELFTEST? n
|
ATOMIC64_SELFTEST? n
|
||||||
BACKTRACE_SELF_TEST? n
|
BACKTRACE_SELF_TEST? n
|
||||||
CRC32_SELFTEST? n
|
CRC32_SELFTEST? n
|
||||||
CRYPTO_TEST? n
|
CRYPTO_TEST? n
|
||||||
|
DRM_DEBUG_MM_SELFTEST? n
|
||||||
|
EFI_TEST? n
|
||||||
GLOB_SELFTEST? n
|
GLOB_SELFTEST? n
|
||||||
INTERVAL_TREE_TEST? n
|
INTERVAL_TREE_TEST? n
|
||||||
LNET_SELFTEST? n
|
LNET_SELFTEST? n
|
||||||
@ -647,41 +649,30 @@ with stdenv.lib;
|
|||||||
NOTIFIER_ERROR_INJECTION? n
|
NOTIFIER_ERROR_INJECTION? n
|
||||||
PERCPU_TEST? n
|
PERCPU_TEST? n
|
||||||
RBTREE_TEST? n
|
RBTREE_TEST? n
|
||||||
|
RCU_PERF_TEST? n
|
||||||
RCU_TORTURE_TEST? n
|
RCU_TORTURE_TEST? n
|
||||||
|
TEST_ASYNC_DRIVER_PROBE? n
|
||||||
|
TEST_BITMAP? n
|
||||||
TEST_BPF? n
|
TEST_BPF? n
|
||||||
TEST_FIRMWARE? n
|
TEST_FIRMWARE? n
|
||||||
|
TEST_HASH? n
|
||||||
TEST_HEXDUMP? n
|
TEST_HEXDUMP? n
|
||||||
|
TEST_KMOD? n
|
||||||
TEST_KSTRTOX? n
|
TEST_KSTRTOX? n
|
||||||
TEST_LIST_SORT? n
|
TEST_LIST_SORT? n
|
||||||
TEST_LKM? n
|
TEST_LKM? n
|
||||||
|
TEST_PARMAN? n
|
||||||
TEST_PRINTF? n
|
TEST_PRINTF? n
|
||||||
TEST_RHASHTABLE? n
|
TEST_RHASHTABLE? n
|
||||||
|
TEST_SORT? n
|
||||||
TEST_STATIC_KEYS? n
|
TEST_STATIC_KEYS? n
|
||||||
TEST_STRING_HELPERS? n
|
TEST_STRING_HELPERS? n
|
||||||
TEST_UDELAY? n
|
TEST_UDELAY? n
|
||||||
TEST_USER_COPY? n
|
TEST_USER_COPY? n
|
||||||
|
TEST_UUID? n
|
||||||
|
WW_MUTEX_SELFTEST? n
|
||||||
XZ_DEC_TEST? n
|
XZ_DEC_TEST? n
|
||||||
|
|
||||||
${optionalString (versionAtLeast version "4.13") ''
|
|
||||||
TEST_KMOD n
|
|
||||||
''}
|
|
||||||
|
|
||||||
${optionalString (versionOlder version "4.4") ''
|
|
||||||
EFI_TEST? n
|
|
||||||
RCU_PERF_TEST? n
|
|
||||||
TEST_ASYNC_DRIVER_PROBE? n
|
|
||||||
TEST_BITMAP? n
|
|
||||||
TEST_HASH? n
|
|
||||||
TEST_UUID? n
|
|
||||||
''}
|
|
||||||
|
|
||||||
${optionalString (versionAtLeast version "4.11") ''
|
|
||||||
DRM_DEBUG_MM_SELFTEST? n
|
|
||||||
TEST_PARMAN? n
|
|
||||||
TEST_SORT? n
|
|
||||||
WW_MUTEX_SELFTEST? n
|
|
||||||
''}
|
|
||||||
|
|
||||||
${optionalString (features.criu or false) ''
|
${optionalString (features.criu or false) ''
|
||||||
EXPERT y
|
EXPERT y
|
||||||
CHECKPOINT_RESTORE y
|
CHECKPOINT_RESTORE y
|
||||||
|
Loading…
x
Reference in New Issue
Block a user