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 <maxime@leroys.fr>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit 37b35546eb)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
This commit is contained in:
Maxime Leroy
2025-08-06 17:06:35 +02:00
committed by Thomas Perale
parent 443bf63537
commit 5742d96555

View File

@@ -20,4 +20,8 @@ GROUT_DEPENDENCIES = \
libecoli \
util-linux
define GROUT_LINUX_CONFIG_FIXUPS
$(call KCONFIG_ENABLE_OPT,CONFIG_TUN)
endef
$(eval $(meson-package))