d8016779582504f581cd3dfe3fd42d0129770dd4
[openwrt.git] / target / linux / sunxi / base-files / etc / uci-defaults / 02_network
1 #!/bin/sh
2 #
3 # Copyright (C) 2013-2014 OpenWrt.org
4 #
5
6 [ -e /etc/config/network ] && exit 0
7
8 touch /etc/config/network
9
10 . /lib/sunxi.sh
11 . /lib/functions/uci-defaults.sh
12
13 ucidef_set_interface_loopback
14
15 case "$( sunxi_board_name )" in
16 "olinuxino-micro"*)
17         ucidef_set_interface_lan 'wlan0'
18         ;;
19 *)
20         ucidef_set_interface_lan 'eth0'
21         ;;
22 esac
23
24 uci commit network
25
26 exit 0