[openwrt/openwrt] ramips: update Tenbay T-MB5EU wireless MAC address

LEDE Commits lede-commits at lists.infradead.org
Fri Jan 21 16:17:20 PST 2022


blocktrron pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/b0c04a37e48547e1c420386b6bd9b08c93de3429

commit b0c04a37e48547e1c420386b6bd9b08c93de3429
Author: David Bauer <mail at david-bauer.net>
AuthorDate: Wed Jan 19 22:47:37 2022 +0100

    ramips: update Tenbay T-MB5EU wireless MAC address
    
    The current MAC address assignment is still incorrect.
    
    Use the same MAC address as seen on the stock firmware
    for both wireless interfaces.
    
    The 5GHz MAC address OUI is +2 in the first EUI octet. We currently
    don't do this in OpenWrt. Ignore this offset for now. With the current
    assignment, recurring MAC addresses between radios is already taken care
    of.
    
    Signed-off-by: David Bauer <mail at david-bauer.net>
---
 .../ramips/mt7621/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac   | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/target/linux/ramips/mt7621/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac b/target/linux/ramips/mt7621/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac
index 3c3b1e62e7..242e1e6efe 100644
--- a/target/linux/ramips/mt7621/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac
+++ b/target/linux/ramips/mt7621/base-files/etc/hotplug.d/ieee80211/10_fix_wifi_mac
@@ -47,7 +47,6 @@ case "$board" in
 		;;
 	tenbay,t-mb5eu-v01)
 		hw_mac_addr="$(mtd_get_mac_binary factory 0x4)"
-		[ "$PHYNBR" = "0" ] && macaddr_add $hw_mac_addr "1" > /sys${DEVPATH}/macaddress
-		[ "$PHYNBR" = "1" ] && macaddr_add $hw_mac_addr "-1" > /sys${DEVPATH}/macaddress
+		[ "$PHYNBR" = "1" ] &&  macaddr_add $hw_mac_addr "0x100000" > /sys${DEVPATH}/macaddress
 		;;
 esac



More information about the lede-commits mailing list