summaryrefslogtreecommitdiffstats
path: root/target/linux/mpc85xx/base-files/lib/preinit/10_fix_eth_mac.sh
blob: 462a9e9dd8e1677c968ea5ec660150a4b1ef061a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
. /lib/functions.sh
. /lib/functions/system.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