mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-17 10:20:01 +00:00
mpc85xx: fix Enterasys WS-AP3710i eth mac-address
With the introduction of the simpleImage loader, the MAC address is not
set by the bootloader anymore.
Fix this by reading the MAC address from the U-Boot environment
partition.
Signed-off-by: David Bauer <mail@david-bauer.net>
(cherry picked from commit 22f92cce22
)
This commit is contained in:
parent
3001d3c5d4
commit
d8415fa270
@ -3,6 +3,9 @@
|
|||||||
|
|
||||||
preinit_set_mac_address() {
|
preinit_set_mac_address() {
|
||||||
case $(board_name) in
|
case $(board_name) in
|
||||||
|
enterasys,ws-ap3710i)
|
||||||
|
ip link set dev eth0 address $(mtd_get_mac_ascii cfg1 ethaddr)
|
||||||
|
;;
|
||||||
enterasys,ws-ap3715i|\
|
enterasys,ws-ap3715i|\
|
||||||
extreme-networks,ws-ap3825i)
|
extreme-networks,ws-ap3825i)
|
||||||
ip link set dev eth0 address $(mtd_get_mac_ascii cfg1 ethaddr)
|
ip link set dev eth0 address $(mtd_get_mac_ascii cfg1 ethaddr)
|
||||||
|
Loading…
Reference in New Issue
Block a user