From 37b35546ebd699a75033c525b74d264a363e9a01 Mon Sep 17 00:00:00 2001 From: Maxime Leroy Date: Wed, 6 Aug 2025 17:06:35 +0200 Subject: [PATCH] package/grout: add kernel TUN dependency Grout automatically creates a TUN interface at runtime, so the target kernel must have CONFIG_TUN enabled. Add a fix-up to ensure that option is selected. Signed-off-by: Maxime Leroy Signed-off-by: Julien Olivain --- package/grout/grout.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/grout/grout.mk b/package/grout/grout.mk index 46d3cf5f0a..53271dd913 100644 --- a/package/grout/grout.mk +++ b/package/grout/grout.mk @@ -20,4 +20,8 @@ GROUT_DEPENDENCIES = \ libecoli \ util-linux +define GROUT_LINUX_CONFIG_FIXUPS + $(call KCONFIG_ENABLE_OPT,CONFIG_TUN) +endef + $(eval $(meson-package))