From bb01c5c4a0df77694ac3716161d99979473785ac Mon Sep 17 00:00:00 2001 From: David Bauer Date: Sun, 10 Nov 2024 03:25:38 +0100 Subject: [PATCH] generic: enable kernel namespace support Kernel namespacce support is only enabled on non small flash targets by default. Enable it for all targets to allow procd-ujail to be used on small flash targets (notably ramips-mt76x8). Signed-off-by: David Bauer --- targets/generic | 3 +++ 1 file changed, 3 insertions(+) diff --git a/targets/generic b/targets/generic index 48f6ad0a16..64119a3b8c 100644 --- a/targets/generic +++ b/targets/generic @@ -63,6 +63,9 @@ try_config('KERNEL_IO_URING', false) config('KERNEL_FHANDLE', false) config('KERNEL_FANOTIFY', false) config('KERNEL_CGROUPS', false) +-- KERNEL_NAMESPACES is required for procd-ujail +-- This option id enabled by default on non small flash targets +config('KERNEL_NAMESPACES', true) config('KERNEL_IP_MROUTE', false) config('KERNEL_IPV6_MROUTE', false) config('KERNEL_IPV6_SEG6_LWTUNNEL', false)