From: Ben Greear <gree...@candelatech.com>

Reloading the driver causes the phyX to change, and that caused
the MAC address to change.  Instead, match on pci-bus which should
be immutable.

Signed-off-by: Ben Greear <gree...@candelatech.com>
---
 .../ipq806x/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac    | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git 
a/target/linux/ipq806x/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac 
b/target/linux/ipq806x/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac
index afa425f..fef8205 100644
--- a/target/linux/ipq806x/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac
+++ b/target/linux/ipq806x/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac
@@ -19,8 +19,14 @@ case "$board" in
                echo $(macaddr_add $(mtd_get_mac_binary PRODUCTDATA 12) $((1 - 
$PHYNBR)) ) > /sys${DEVPATH}/macaddress
                ;;
        netgear,d7800 |\
-       netgear,r7500v2 |\
+       netgear,r7500v2)
+               echo $(macaddr_add $(mtd_get_mac_binary art 6)  $(($PHYNBR + 
1)) ) > /sys${DEVPATH}/macaddress
+               ;;
        netgear,r7800)
+               # Match off of pci-bus, it is less mutable than the phy name 
since phy name
+               # changes on module reload.
+               grep PCI_SLOT_NAME=0000:01:00.0 /sys${DEVPATH}/device/uevent && 
PHYNBR=0
+               grep PCI_SLOT_NAME=0001:01:00.0 /sys${DEVPATH}/device/uevent && 
PHYNBR=1
                echo $(macaddr_add $(mtd_get_mac_binary art 6)  $(($PHYNBR + 
1)) ) > /sys${DEVPATH}/macaddress
                ;;
        tplink,c2600)
-- 
2.4.11


_______________________________________________
openwrt-devel mailing list
openwrt-devel@lists.openwrt.org
https://lists.openwrt.org/mailman/listinfo/openwrt-devel

Reply via email to