71d6fd8aa2e0d038d322482a3c96b1773511b3ff
[openwrt.git] / target / linux / zynq / base-files / etc / board.d / 02_network
1 #!/bin/sh
2 # Copyright (C) 2015 OpenWrt.org
3
4 . /lib/functions/uci-defaults.sh
5
6 board_config_update
7
8 case "$(cat /tmp/sysinfo/board_name)" in
9         xlnx,zynq-zc702)
10                 ucidef_set_interface_lan 'eth0'
11                 ;;
12 esac
13
14 board_config_flush
15
16 exit 0