e6acda67fbc19b9a428f709c403eddcc94f06643
[openwrt/svn-archive/archive.git] / target / linux / netlogic / base-files / etc / board.d / 02_network
1 #!/bin/sh
2 #
3 # Copyright (C) 2014-2015 OpenWrt.org
4 #
5
6 . /lib/functions/uci-defaults-new.sh
7 . /lib/netlogic.sh
8
9 board_config_update
10
11 case "$board_name" in
12 "xlp-evp" |\
13 "xlp-fvp" |\
14 "xlp-gvp" |\
15 "xlp-svp" |\
16 *)
17 ucidef_set_interface_lan "eth0"
18 ;;
19
20 esac
21
22 board_config_flush
23
24 exit 0