OpenWrt – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 #!/bin/sh
2 # Copyright (C) 2014-2015 OpenWrt.org
3  
4 . /lib/functions/uci-defaults.sh
5 . /lib/functions.sh
6 . /lib/functions/system.sh
7  
8 board_config_update
9  
10 board=$(board_name)
11  
12 case "$board" in
13 aerohive,hiveap-330)
14 ucidef_set_interfaces_lan_wan "eth1" "eth0"
15 ;;
16 ocedo,panda)
17 ucidef_set_interface_wan "eth1"
18 ucidef_add_switch "switch0" \
19 "0:lan" "1:lan" "2:lan" "3:lan" "4:lan" "5:lan" "6:lan" "7:lan" "8u@eth0"
20 ;;
21 tplink,tl-wdr4900-v1)
22 ucidef_add_switch "switch0" \
23 "0@eth0" "2:lan:1" "3:lan:2" "4:lan:3" "5:lan:4" "1:wan"
24 ucidef_set_interface_macaddr "wan" "$(mtd_get_mac_binary config 332)"
25 ;;
26 *)
27 ucidef_set_interfaces_lan_wan "eth0" "eth1"
28 ;;
29 esac
30  
31 board_config_flush
32  
33 exit 0