aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/mpc85xx/base-files/lib/preinit/10_fix_eth_mac.sh
blob: d84ab5f186b4d6966aabf3ee6b9dcb23cf3909bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
. /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)
		;;
	watchguard,firebox-t10)
		ip link set dev eth0 address "$(mtd_get_mac_text "device_id" 0x1830)"
		ip link set dev eth1 address "$(mtd_get_mac_text "device_id" 0x1844)"
		ip link set dev eth2 address "$(mtd_get_mac_text "device_id" 0x1858)"
		;;
	esac
}

boot_hook_add preinit_main preinit_set_mac_address