OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 #!/bin/sh
2 #
3 # Copyright (C) 2013-2015 OpenWrt.org
4 #
5  
6 . /lib/functions/uci-defaults.sh
7  
8 board=$(board_name)
9  
10 board_config_update
11  
12 case "$board" in
13 *gw51xx |\
14 *gw52xx |\
15 *gw5904)
16 ucidef_set_interface_lan 'eth0'
17 ;;
18 *gw53xx |\
19 *gw54xx |\
20 *gw552x)
21 ucidef_set_interfaces_lan_wan 'eth0' 'eth1'
22 ;;
23 *wandboard)
24 ucidef_set_interface_wan 'eth0'
25 ;;
26 esac
27  
28 board_config_flush
29  
30 exit 0