diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-02-13 02:22:54 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-02-16 04:00:52 +0100 |
commit | 7ba729ce27bbdc10b2b1208f45a7da4ad746388d (patch) | |
tree | b87eeff4f1d723b019e73a4d9c16f9b6ef8b2ef9 /target/linux/config | |
parent | d6650bf00632e5df056b10ff6bdc47d73fc170a2 (diff) |
linux: activate more cgroup options for ltp
Diffstat (limited to 'target/linux/config')
-rw-r--r-- | target/linux/config/Config.in.kernel | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/target/linux/config/Config.in.kernel b/target/linux/config/Config.in.kernel index 0535c36d7..e2b619926 100644 --- a/target/linux/config/Config.in.kernel +++ b/target/linux/config/Config.in.kernel @@ -312,8 +312,28 @@ config ADK_LINUX_KERNEL_WATCH_QUEUE bool "General notification queue" default n +config ADK_LINUX_KERNEL_MEMCG + bool + default n + +config ADK_LINUX_KERNEL_BLK_CGROUP + bool + default n + +config ADK_LINUX_KERNEL_CGROUP_SCHED + bool + default n + +config ADK_LINUX_KERNEL_CGROUP_PIDS + bool + default n + config ADK_LINUX_KERNEL_CGROUPS bool "Control group support" + select ADK_LINUX_KERNEL_MEMCG + select ADK_LINUX_KERNEL_BLK_CGROUP + select ADK_LINUX_KERNEL_CGROUP_SCHED + select ADK_LINUX_KERNEL_CGROUP_PIDS default n choice |