192838e018
The board is made by Avnet, so rename it accordingly as upstream has done it Also move the device to maintain alphabetic order Signed-off-by: Luis Araneda <luaraneda@gmail.com>
22 lines
349 B
Bash
Executable file
22 lines
349 B
Bash
Executable file
#!/bin/sh
|
|
# Copyright (C) 2015 OpenWrt.org
|
|
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
board_config_update
|
|
|
|
case "$(board_name)" in
|
|
avnet,zynq-zed | \
|
|
digilent,zynq-zybo | \
|
|
digilent,zynq-zybo-z7 | \
|
|
xlnx,zynq-zc702)
|
|
ucidef_set_interface_lan 'eth0'
|
|
;;
|
|
*)
|
|
echo "Unsupported hardware. Network interfaces not intialized"
|
|
;;
|
|
esac
|
|
|
|
board_config_flush
|
|
|
|
exit 0
|