From 5dd87fd8ad3a42c71d90a8fecc893af973e552bf Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Thu, 3 Oct 2013 16:50:51 +0200 Subject: device: add macvlan support Signed-off-by: Felix Fietkau Signed-off-by: Jo-Philipp Wich --- config.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'config.c') diff --git a/config.c b/config.c index 8db2b59..682db54 100644 --- a/config.c +++ b/config.c @@ -166,6 +166,8 @@ config_init_devices(void) devtype = &bridge_device_type; else if (!strcmp(type, "tunnel")) devtype = &tunnel_device_type; + else if (!strcmp(type, "macvlan")) + devtype = &macvlan_device_type; } if (!devtype) -- cgit v1.2.1