ramips: move ramips_get_mac_* functions to lib/ramips.sh
[openwrt.git] / target / linux / ramips / base-files / etc / uci-defaults / network
1 #!/bin/sh
2
3 . /etc/functions.sh
4 . /lib/ramips.sh
5 . /lib/functions/uci-defaults.sh
6
7 if [ ! -x /usr/sbin/maccalc ]; then
8         echo "$0: maccalc not found!"
9         return
10 fi
11
12 ramips_setup_interfaces()
13 {
14         local board="$1"
15
16         ucidef_set_interface_loopback
17
18         case $board in
19         argus-atp52b | \
20         b2c | \
21         f5d8235-v2 | \
22         nw718)
23                 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
24                 ;;
25
26         rt-n15)
27                 ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
28                 ucidef_add_switch "rtl8366s" "1" "1"
29                 ucidef_add_switch_vlan "rtl8366s" "1" "1 2 3 4 5t"
30                 ucidef_add_switch_vlan "rtl8366s" "2" "0 5t"
31                 ;;
32
33         *)
34                 RT3X5X=`cat /proc/cpuinfo | grep RT3.5`
35                 if [ -n "${RT3X5X}" ]; then
36                         ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
37                 else
38                         ucidef_set_interfaces_lan_wan "eth0" "eth1"
39                 fi
40                 ;;
41         esac
42 }
43
44 ramips_setup_macs()
45 {
46         local board="$1"
47         local lan_mac=""
48         local wan_mac=""
49
50         case $board in
51         f5d8235-v2)
52                 lan_mac=$(ramips_get_mac_nvram "u-boot" 262148)
53                 wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
54                 ;;
55
56         argus-atp52b | \
57         b2c | \
58         nw718 | \
59         rt-n15)
60                 lan_mac=$(ramips_get_mac_binary factory 4)
61                 wan_mac=$(/usr/sbin/maccalc add "$lan_mac" 1)
62                 ;;
63         esac
64
65         [ -n $lan_mac ] && ucidef_set_interface_macaddr lan $lan_mac
66         [ -n $wan_mac ] && ucidef_set_interface_macaddr wan $wan_mac
67 }
68
69 [ -e /etc/config/network ] && exit 0
70
71 touch /etc/config/network
72
73 board=$(ramips_board_name)
74
75 ramips_setup_interfaces $board
76 ramips_setup_macs $board
77
78 uci commit network
79
80 exit 0