mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-19 05:38:00 +00:00
ramips: fix LAN/WAN MAC addresses of Xiaomi MiWiFi Mini board
Based on stock firmware tests, both LAN and WAN ports use the MAC address from 0x28 on factory partition. In OpenWrt, this one is already set in DTS. This patch removes the local bit set in 02_network previously, and adjusts LAN/WAN addresses as on stock firmware. Note that in tests we found a MAC address in 0x2e that is the one in 0x28 plus 1. Since stock firmware does not use it though, we do not use it either. Thanks to Chih-Wei Chen for testing this on his device. ref: https://github.com/openwrt/openwrt/pull/2497 Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
This commit is contained in:
parent
940844e077
commit
fd1d03f853
@ -587,6 +587,7 @@ ramips_setup_macs()
|
||||
buffalo,whr-g300n|\
|
||||
buffalo,wsr-600dhp|\
|
||||
glinet,gl-mt300n-v2|\
|
||||
xiaomi,miwifi-mini|\
|
||||
zyxel,keenetic-start)
|
||||
# This empty case has to be kept for devices without any MAC address adjustments
|
||||
;;
|
||||
@ -721,9 +722,6 @@ ramips_setup_macs()
|
||||
lan_mac=$(mtd_get_mac_binary factory 0xe006)
|
||||
label_mac=$lan_mac
|
||||
;;
|
||||
xiaomi,miwifi-mini)
|
||||
lan_mac=$(macaddr_setbit_la "$(cat /sys/class/net/eth0/address)")
|
||||
;;
|
||||
zbtlink,zbt-we1326)
|
||||
wan_mac=$(mtd_get_mac_binary factory 0xe006)
|
||||
label_mac=$(cat /sys/class/ieee80211/phy0/macaddress)
|
||||
|
Loading…
Reference in New Issue
Block a user