From ef30e86f09364511de798aeb64656c46e2c1a3d0 Mon Sep 17 00:00:00 2001 From: Clayton Craft Date: Mon, 9 Jun 2025 22:33:24 -0700 Subject: [PATCH] kconfigcheck: add additional kconfig requirements for systemd From: https://github.com/systemd/systemd/blob/main/README All of these config options are bool, hence why they are set to "y". Kernels will also need to add pahole to the makedepends to support BPF. fixes #3769 Signed-off-by: Clayton Craft Part-of: --- kconfigcheck.toml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/kconfigcheck.toml b/kconfigcheck.toml index 3eac57298..a4246f255 100644 --- a/kconfigcheck.toml +++ b/kconfigcheck.toml @@ -103,6 +103,19 @@ FW_LOADER_COMPRESS_ZSTD = "y" PSI = "y" PSI_DEFAULT_DISABLED = "n" UDMABUF = "y" +["category:default".">=5.14.0"."all"] +# systemd (kernel version is "recommended baseline") +BPF = "y" +BPF_JIT = "y" +BPF_LSM = "y" +IPC_NS = "y" +KPROBES = "y" +KPROBE_EVENTS = "y" +NET_NS = "y" +PID_NS = "y" +SECURITYFS = "y" +USER_NS = "y" +UTS_NS = "y" ["category:netmount".">=2.6.0"."all"] CACHEFILES = "y"