ramips: fix mac addresses used by Phicomm K2P

Like most mt7621 boards, Phicomm K2P stores LAN/WAN mac addresses
at 0xe000/0xe006 of factory partition.
Phicomm uses lan_mac-1 as wan_mac, while our default case in 02_network
uses lan_mac+1.

Add a special case reading lan/wan mac address for Phicomm K2P.

Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
master
Chuanhong Guo 5 years ago
parent cd91f2327f
commit f30d588460

@ -647,6 +647,10 @@ ramips_setup_macs()
wan_mac=$(mtd_get_mac_binary factory 4)
lan_mac=$(mtd_get_mac_binary factory 46)
;;
phicomm,k2p)
lan_mac=$(mtd_get_mac_binary factory 0xe000)
wan_mac=$(mtd_get_mac_binary factory 0xe006)
;;
poray,m3|\
poray,m4-4m|\
poray,m4-8m|\

Loading…
Cancel
Save