mediatek: bpi-r4: store random MAC addresses for the BPi-R4
[openwrt/openwrt.git] / target / linux / mediatek / filogic / base-files / etc / hotplug.d / ieee80211 / 11_fix_wifi_mac
1 [ "$ACTION" == "add" ] || exit 0
2
3 PHYNBR=${DEVPATH##*/phy}
4
5 [ -n $PHYNBR ] || exit 0
6
7 . /lib/functions.sh
8 . /lib/functions/system.sh
9
10 board=$(board_name)
11
12 case "$board" in
13 acer,predator-w6)
14 key_path="/var/qcidata/data"
15 [ "$PHYNBR" = "0" ] && cat $key_path/2gMAC > /sys${DEVPATH}/macaddress
16 [ "$PHYNBR" = "1" ] && cat $key_path/6gMAC > /sys${DEVPATH}/macaddress
17 [ "$PHYNBR" = "2" ] && cat $key_path/5gMAC > /sys${DEVPATH}/macaddress
18 ;;
19 asus,rt-ax59u)
20 CI_UBIPART="UBI_DEV"
21 addr=$(mtd_get_mac_binary_ubi "Factory" 0x4)
22 # Originally, phy1 is phy0 mac with LA and 28th bits set. However, this would conflict
23 # addresses on multiple VIFs with the other radio when bit 28 is already set.
24 # Set LA and 28 bits and increment mac-address instead.
25 [ "$PHYNBR" = "1" ] && \
26 macaddr_setbit_la $(macaddr_setbit $(macaddr_add $addr 1) 28) > \
27 /sys${DEVPATH}/macaddress
28 ;;
29 asus,tuf-ax4200|\
30 asus,tuf-ax6000)
31 CI_UBIPART="UBI_DEV"
32 addr=$(mtd_get_mac_binary_ubi "Factory" 0x4)
33 # Originally, phy0 is phy1 mac with LA bit set. However, this would conflict
34 # addresses on multiple VIFs with the other radio. Set LA bit and increment
35 # mac-address instead.
36 [ "$PHYNBR" = "0" ] && macaddr_setbit_la $(macaddr_add $addr 1) > /sys${DEVPATH}/macaddress
37 [ "$PHYNBR" = "1" ] && echo "$addr" > /sys${DEVPATH}/macaddress
38 ;;
39 bananapi,bpi-r3|\
40 bananapi,bpi-r3-mini)
41 addr=$(cat /sys/class/net/eth0/address)
42 [ "$PHYNBR" = "0" ] && macaddr_add $addr 2 > /sys${DEVPATH}/macaddress
43 [ "$PHYNBR" = "1" ] && macaddr_add $addr 3 > /sys${DEVPATH}/macaddress
44 ;;
45 bananapi,bpi-r4)
46 addr=$(cat /sys/class/net/eth0/address)
47 [ "$PHYNBR" = "0" ] && macaddr_add $addr 2 > /sys${DEVPATH}/macaddress
48 [ "$PHYNBR" = "1" ] && macaddr_add $addr 3 > /sys${DEVPATH}/macaddress
49 [ "$PHYNBR" = "2" ] && macaddr_add $addr 4 > /sys${DEVPATH}/macaddress
50 ;;
51 cetron,ct3003)
52 addr=$(mtd_get_mac_binary "art" 0)
53 [ "$PHYNBR" = "0" ] && macaddr_add $addr 1 > /sys${DEVPATH}/macaddress
54 [ "$PHYNBR" = "1" ] && macaddr_setbit_la $(macaddr_add $addr 2) > /sys${DEVPATH}/macaddress
55 ;;
56 cmcc,rax3000m)
57 case "$(cmdline_get_var root)" in
58 /dev/mmc*)
59 addr=$(mmc_get_mac_binary factory 0xa)
60 ;;
61 *)
62 addr=$(mtd_get_mac_binary factory 0xa)
63 ;;
64 esac
65 [ "$PHYNBR" = "1" ] && echo "$addr" > /sys${DEVPATH}/macaddress
66 ;;
67 comfast,cf-e393ax)
68 addr=$(mtd_get_mac_binary "Factory" 0x8000)
69 [ "$PHYNBR" = "1" ] && macaddr_add $addr 1 > /sys${DEVPATH}/macaddress
70 ;;
71 cudy,re3000-v1)
72 addr=$(mtd_get_mac_binary bdinfo 0xde00)
73 [ "$PHYNBR" = "0" ] && echo "$addr" > /sys${DEVPATH}/macaddress
74 [ "$PHYNBR" = "1" ] && macaddr_setbit_la $(macaddr_add $addr 1) > /sys${DEVPATH}/macaddress
75 ;;
76 cudy,wr3000-v1)
77 addr=$(mtd_get_mac_binary bdinfo 0xde00)
78 # Originally, phy0 is phy1 mac with LA bit set. However, this would conflict
79 # addresses on multiple VIFs with the other radio. Set LA bit and increment
80 # mac-address instead.
81 [ "$PHYNBR" = "0" ] && echo "$addr" > /sys${DEVPATH}/macaddress
82 [ "$PHYNBR" = "1" ] && macaddr_setbit_la $(macaddr_add $addr 1) > /sys${DEVPATH}/macaddress
83 ;;
84 dlink,aquila-pro-ai-m30-a1)
85 addr=$(mtd_get_mac_binary "Odm" 0x81)
86 [ "$PHYNBR" = "1" ] && macaddr_add $addr 3 > /sys${DEVPATH}/macaddress
87 ;;
88 glinet,gl-mt6000|\
89 glinet,gl-x3000|\
90 glinet,gl-xe3000)
91 addr=$(mmc_get_mac_binary factory 0x04)
92 [ "$PHYNBR" = "0" ] && echo "$addr" > /sys${DEVPATH}/macaddress
93 [ "$PHYNBR" = "1" ] && macaddr_add $addr 1 > /sys${DEVPATH}/macaddress
94 ;;
95 h3c,magic-nx30-pro)
96 addr=$(mtd_get_mac_ascii pdt_data_1 ethaddr)
97 [ "$PHYNBR" = "0" ] && macaddr_add $addr 2 > /sys${DEVPATH}/macaddress
98 [ "$PHYNBR" = "1" ] && macaddr_add $addr 3 > /sys${DEVPATH}/macaddress
99 ;;
100 jcg,q30-pro|\
101 netcore,n60)
102 # Originally, phy1 is phy0 mac with LA bit set. However, this would conflict
103 # addresses on multiple VIFs with the other radio. Use label mac to set LA bit.
104 [ "$PHYNBR" = "1" ] && macaddr_setbit_la $(get_mac_label) > /sys${DEVPATH}/macaddress
105 ;;
106 jdcloud,re-cp-03)
107 [ "$PHYNBR" = "1" ] && mmc_get_mac_binary factory 0xa > /sys${DEVPATH}/macaddress
108 ;;
109 mercusys,mr90x-v1)
110 addr=$(get_mac_binary "/tmp/tp_data/default-mac" 0)
111 [ "$PHYNBR" = "0" ] && echo "$addr" > /sys${DEVPATH}/macaddress
112 [ "$PHYNBR" = "1" ] && macaddr_add $addr -1 > /sys${DEVPATH}/macaddress
113 ;;
114 netgear,wax220)
115 hw_mac_addr=$(mtd_get_mac_ascii u-boot-env mac)
116 [ "$PHYNBR" = "0" ] && macaddr_add $hw_mac_addr 2 > /sys${DEVPATH}/macaddress
117 [ "$PHYNBR" = "1" ] && macaddr_add $hw_mac_addr 3 > /sys${DEVPATH}/macaddress
118 ;;
119 openembed,som7981)
120 [ "$PHYNBR" = "1" ] && cat /sys/class/net/eth0/address > /sys${DEVPATH}/macaddress
121 ;;
122 qihoo,360t7)
123 addr=$(mtd_get_mac_ascii factory lanMac)
124 [ "$PHYNBR" = "0" ] && macaddr_add $addr 2 > /sys${DEVPATH}/macaddress
125 [ "$PHYNBR" = "1" ] && macaddr_add $addr 3 > /sys${DEVPATH}/macaddress
126 ;;
127 smartrg,sdg-8612|\
128 smartrg,sdg-8614|\
129 smartrg,sdg-8622|\
130 smartrg,sdg-8632)
131 addr=$(mmc_get_mac_ascii mfginfo MFG_MAC)
132 [ "$PHYNBR" = "0" ] && macaddr_add $addr 2 > /sys${DEVPATH}/macaddress
133 [ "$PHYNBR" = "1" ] && macaddr_add $addr 3 > /sys${DEVPATH}/macaddress
134 [ "$PHYNBR" = "2" ] && macaddr_add $addr 4 > /sys${DEVPATH}/macaddress
135 ;;
136 tplink,tl-xdr4288|\
137 tplink,tl-xdr6086|\
138 tplink,tl-xdr6088)
139 [ "$PHYNBR" = "0" ] && get_mac_label > /sys${DEVPATH}/macaddress
140 ;;
141 ubnt,unifi-6-plus)
142 addr=$(mtd_get_mac_binary EEPROM 0x6)
143 [ "$PHYNBR" = "0" ] && echo "$addr" > /sys${DEVPATH}/macaddress
144 [ "$PHYNBR" = "1" ] && macaddr_add $addr 1 > /sys${DEVPATH}/macaddress
145 ;;
146 routerich,ax3000|\
147 zbtlink,zbt-z8102ax|\
148 zbtlink,zbt-z8103ax|\
149 zyxel,ex5601-t0|\
150 zyxel,ex5601-t0-ubootmod)
151 addr=$(mtd_get_mac_binary "Factory" 0x4)
152 [ "$PHYNBR" = "1" ] && macaddr_add $addr 1 > /sys${DEVPATH}/macaddress
153 ;;
154 zyxel,nwa50ax-pro)
155 hw_mac_addr="$(mtd_get_mac_binary mrd 0x1fff8)"
156 [ "$PHYNBR" = "0" ] && macaddr_add $hw_mac_addr 1 > /sys${DEVPATH}/macaddress
157 [ "$PHYNBR" = "1" ] && macaddr_add $hw_mac_addr 2 > /sys${DEVPATH}/macaddress
158 ;;
159 esac