5df138c72c8b21ccf425c9cf311b0d6c1ba820d2
[openwrt/staging/lynxis.git] / target / linux / at91 / base-files / etc / uci-defaults / 02_network
1 #!/bin/sh
2 #
3 # Copyright (C) 2014 OpenWrt.org
4 #
5
6 [ -e /etc/config/network ] && exit 0
7
8 touch /etc/config/network
9
10 . /lib/functions/uci-defaults.sh
11 . /lib/at91.sh
12
13 ucidef_set_interface_loopback
14
15 case "$(at91_board_name)" in
16
17 sama5d3_xplained)
18 ucidef_set_interfaces_lan_wan "eth0" "eth1"
19 ;;
20
21 *)
22 ucidef_set_interface_lan "eth0"
23 ;;
24
25 esac
26
27 uci commit network
28
29 exit 0