From: David Bauer Date: Sun, 24 Apr 2022 23:00:49 +0000 (+0200) Subject: mpc85xx: set WS-AP3825i mac-address in preinit X-Git-Url: http://git.openwrt.org/project/luci.git;master?a=commitdiff_plain;h=c6d52515e009d96e0afbe77310bf172f113d0eef;p=openwrt%2Fstaging%2Fmkresin.git mpc85xx: set WS-AP3825i mac-address in preinit The bootloader does seem to not correctly patch in the MAC address for eth0 / eth1 in some cases. While the root cause is not known, manually applying the MAC-Address in preinit does not hurt. Reported-by: Tom Herbers Signed-off-by: David Bauer --- diff --git a/target/linux/mpc85xx/base-files/lib/preinit/10_fix_eth_mac.sh b/target/linux/mpc85xx/base-files/lib/preinit/10_fix_eth_mac.sh new file mode 100644 index 0000000000..d94eba688c --- /dev/null +++ b/target/linux/mpc85xx/base-files/lib/preinit/10_fix_eth_mac.sh @@ -0,0 +1,12 @@ +. /lib/functions.sh + +preinit_set_mac_address() { + case $(board_name) in + extreme-networks,ws-ap3825i) + ip link set dev eth0 address $(mtd_get_mac_ascii cfg1 ethaddr) + ip link set dev eth1 address $(mtd_get_mac_ascii cfg1 eth1addr) + ;; + esac +} + +boot_hook_add preinit_main preinit_set_mac_address