-
Notifications
You must be signed in to change notification settings - Fork 25
/
fuzz-defconfig
38 lines (32 loc) · 931 Bytes
/
fuzz-defconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# code coverage collection
CONFIG_KCOV=y
CONFIG_KCOV_INSTRUMENT_ALL=y
# show code coverage in web interface
CONFIG_DEBUG_INFO=y
# KASAN for use-after-free and out-of-bounds detection
CONFIG_KASAN_INLINE=y
# Any other debugging configs
CONFIG_PROVE_LOCKING=y
CONFIG_PROVE_RCU=y
# Disable the following configs
# CONFIG_RANDOMIZE_BASE is not set
# Increase RCU stall timeout to reduce false positive rate
CONFIG_RCU_CPU_STALL_TIMEOUT=60
# PSTORE
CONFIG_PSTORE=m
CONFIG_EFI_VARS_PSTORE=m
CONFIG_PSTORE_DEFAULT_KMSG_BYTES=10240
CONFIG_PSTORE_DEFLATE_COMPRESS=m
CONFIG_PSTORE_COMPRESS=y
CONFIG_PSTORE_DEFLATE_COMPRESS_DEFAULT=y
CONFIG_PSTORE_COMPRESS_DEFAULT="deflate"
CONFIG_PSTORE_CONSOLE=y
CONFIG_PSTORE_PMSG=y
CONFIG_PSTORE_RAM=m
CONFIG_PSTORE_ZONE=m
CONFIG_PSTORE_BLK=m
CONFIG_PSTORE_BLK_BLKDEV=""
CONFIG_PSTORE_BLK_KMSG_SIZE=64
CONFIG_PSTORE_BLK_MAX_REASON=2
CONFIG_PSTORE_BLK_PMSG_SIZE=64
CONFIG_PSTORE_BLK_CONSOLE_SIZE=64