diff options
| author | Stijn Tintel | 2023-02-20 14:00:54 +0000 |
|---|---|---|
| committer | Stijn Tintel | 2023-03-05 16:36:01 +0000 |
| commit | 4448b27930526e700d2fcb882bad2fd10aa17918 (patch) | |
| tree | 6519886ff0d6623c8ca961007b97b41b66e5b4e4 | |
| parent | 26b8739b6839e80c836cff0172fb6005c407a520 (diff) | |
| download | openwrt-4448b27930526e700d2fcb882bad2fd10aa17918.tar.gz | |
kernel: set default for KERNEL_BPF_KPROBE_OVERRIDE
Without the default value this still causes a missing symbol. Disable by
default as it depends on FUNCTION_ERROR_INJECTION, which is disabled in
the generic config and we don't have a build symbol to enable that.
Fixes: 500c37c56ff6 ("kernel: add missing symbol")
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
| -rw-r--r-- | config/Config-kernel.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/Config-kernel.in b/config/Config-kernel.in index 258163984e..ad23b21479 100644 --- a/config/Config-kernel.in +++ b/config/Config-kernel.in @@ -461,6 +461,7 @@ config KERNEL_BPF_EVENTS config KERNEL_BPF_KPROBE_OVERRIDE bool depends on KERNEL_KPROBES + default n config KERNEL_AIO bool "Compile the kernel with asynchronous IO support" |