68ff80788aebee1eecb45c1cae848b67381785ad
[openwrt/staging/hauke.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 digilent,zynq-zybo | \
10 digilent,zynq-zybo-z7 | \
11 xlnx,zynq-zc702 | \
12 xlnx,zynq-zed)
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