ar71xx: Archer C58/C59/C60 fix qca9886 wireless interface
[openwrt/openwrt.git] / target / linux / ar71xx / base-files / etc / hotplug.d / ieee80211 / 10_fix_wifi_mac
1 #!/bin/ash
2
3 [ "$ACTION" == "add" ] || exit 0
4
5 PHYNBR=${DEVPATH##*/phy}
6
7 [ -n $PHYNBR ] || exit 0
8
9 . /lib/functions.sh
10 . /lib/functions/system.sh
11
12 board=$(board_name)
13
14 case "$board" in
15 archer-c58-v1|\
16 archer-c59-v1|\
17 archer-c60-v1)
18 echo $(macaddr_add $(mtd_get_mac_binary mac 8) $(($PHYNBR - 1)) ) > /sys${DEVPATH}/macaddress
19 ;;
20 *)
21 ;;
22 esac
23