b3670cf37b720f626ed8b75e25a1d94f947ef706
[openwrt/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 "$(board_name)" in
9 avnet,zynq-zed | \
10 digilent,zynq-zybo | \
11 digilent,zynq-zybo-z7 | \
12 xlnx,zynq-zc702)
13 ucidef_set_interface_lan 'eth0'
14 ;;
15 *)
16 echo "Unsupported hardware. Network interfaces not intialized"
17 ;;
18 esac
19
20 board_config_flush
21
22 exit 0