From 5b2382434421867337dc96b5e2a530c860f361b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Bl=C3=A4se?= Date: Thu, 3 Mar 2022 22:01:11 +0100 Subject: [PATCH] fff-network: Remove hardcoded network config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The base network configuration has been completely migrated to uci-defaults scripts and any existing network configuration is dropped. Therefore, the hardcoded /etc/config/network configuration file is not required anymore. Remove it. Signed-off-by: Fabian Bläse Reviewed-by: Robert Langhammer --- .../fff/fff-network/files/etc/config/network | 30 ------------------- 1 file changed, 30 deletions(-) delete mode 100644 src/packages/fff/fff-network/files/etc/config/network diff --git a/src/packages/fff/fff-network/files/etc/config/network b/src/packages/fff/fff-network/files/etc/config/network deleted file mode 100644 index 7c88a17b..00000000 --- a/src/packages/fff/fff-network/files/etc/config/network +++ /dev/null @@ -1,30 +0,0 @@ -config globals 'globals' - option packet_steering '1' - -config interface 'loopback' - option ifname 'lo' - option proto 'static' - option ipaddr '127.0.0.1' - option netmask '255.0.0.0' - -config interface 'client' - option type 'bridge' - option auto '1' - -config interface 'wan' - option proto 'none' - option ifname 'eth2' - -config interface 'wan4' - option proto 'dhcp' - option ifname '@wan' - -config interface 'wan6' - option proto 'dhcpv6' - option reqprefix 'no' - option sourcefilter '0' - option ifname '@wan' - -config interface 'ethmesh' - option proto 'batadv_hardif' - option master 'bat0'