Skip to content
Snippets Groups Projects
Commit b8820bab authored by Matthias Schiffer's avatar Matthias Schiffer
Browse files

Properly support devices with only one ethernet interface

parent bb4a9fd5
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,14 @@ get_primary_mac() {
esac
}
lan_ifname="$(uci get network.lan.ifname)"
wan_ifname="$(uci get network.wan.ifname)"
if [ -n "$wan_ifname" ]; then
[ -z "$lan_ifname" ] || sysconfig_set lan_ifname "$lan_ifname"
sysconfig_set wan_ifname "$wan_ifname"
else
sysconfig_set wan_ifname "$lan_ifname"
fi
sysconfig_set lan_ifname "$(uci get network.lan.ifname)"
sysconfig_set wan_ifname "$(uci get network.wan.ifname)"
sysconfig_set primary_mac "$(get_primary_mac)"
......@@ -3,9 +3,16 @@
. /lib/functions.sh
. /lib/gluon/functions/sysconfig.sh
lan_ifname="$(sysconfig lan_ifname)"
uci_add network interface client
uci_set network client ifname "$(sysconfig lan_ifname) bat0"
if [ -n "$lan_ifname" ]; then
uci_set network client ifname "$lan_ifname bat0"
else
uci_set network client ifname "bat0"
fi
uci_set network client type 'bridge'
uci_set network client proto 'dhcpv6'
uci_set network client reqprefix 'no'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment