From 5742d9655517a1cbeef005ca936be68a60e8489a 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 (cherry picked from commit 37b35546ebd699a75033c525b74d264a363e9a01) Signed-off-by: Thomas Perale --- package/grout/grout.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package/grout/grout.mk b/package/grout/grout.mk index 228601dbec..495506d494 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))