From 35b3a646e0ae44b9a4428dcedce22a61967a2384 Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Thu, 18 Aug 2022 23:33:29 +0200 Subject: [PATCH] package/docker-engine: use kernel modules for extra network drivers Docker network driver "overlay", "macvlan" and "ipvlan" are not used by default. Don't force enable them in the kernel. The main aim here is to get rid of the dummy0 network interface which is generated by the dummy driver by default. Signed-off-by: Stefan Agner Signed-off-by: Yann E. MORIN --- package/docker-engine/docker-engine.mk | 4 ---- 1 file changed, 4 deletions(-) diff --git a/package/docker-engine/docker-engine.mk b/package/docker-engine/docker-engine.mk index 293af1858c..fb489c0f8d 100644 --- a/package/docker-engine/docker-engine.mk +++ b/package/docker-engine/docker-engine.mk @@ -124,10 +124,6 @@ define DOCKER_ENGINE_LINUX_CONFIG_FIXUPS $(call KCONFIG_ENABLE_OPT,CONFIG_IP_NF_TARGET_MASQUERADE) $(call KCONFIG_ENABLE_OPT,CONFIG_BRIDGE) $(call KCONFIG_ENABLE_OPT,CONFIG_NET_CORE) - $(call KCONFIG_ENABLE_OPT,CONFIG_DUMMY) - $(call KCONFIG_ENABLE_OPT,CONFIG_MACVLAN) - $(call KCONFIG_ENABLE_OPT,CONFIG_IPVLAN) - $(call KCONFIG_ENABLE_OPT,CONFIG_VXLAN) $(call KCONFIG_ENABLE_OPT,CONFIG_VETH) $(call KCONFIG_ENABLE_OPT,CONFIG_OVERLAY_FS) $(call KCONFIG_ENABLE_OPT,CONFIG_KEYS)