treewide: remove execute bit and shebang from board.d files
[openwrt/staging/rmilecki.git] / target / linux / zynq / base-files / etc / board.d / 02_network
1 # Copyright (C) 2015 OpenWrt.org
2
3 . /lib/functions/uci-defaults.sh
4
5 board_config_update
6
7 case "$(board_name)" in
8 avnet,zynq-zed | \
9 digilent,zynq-zybo | \
10 digilent,zynq-zybo-z7 | \
11 xlnx,zynq-zc702)
12 ucidef_set_interface_lan 'eth0'
13 ;;
14 *)
15 echo "Unsupported hardware. Network interfaces not intialized"
16 ;;
17 esac
18
19 board_config_flush
20
21 exit 0