OpenWrt – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 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 |