95f6534788b1f08c32ac0bde8b90916db7f0197b
[openwrt/staging/rmilecki.git] / target / linux / mxs / base-files / etc / board.d / 02_network
1 #!/bin/sh
2 # Copyright (C) 2013-2015 OpenWrt.org
3
4 . /lib/functions/uci-defaults.sh
5
6 board_config_update
7
8 board=$(board_name)
9
10 case "$board" in
11 *)
12 ucidef_set_interface_lan 'eth0'
13 ;;
14 esac
15
16 board_config_flush
17
18 exit 0