summaryrefslogtreecommitdiff
path: root/target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac
blob: 2b64eda8225145fa8cd3972c76c38dd915226037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Copyright (C) 2014 OpenWrt.org
#

preinit_set_mac_address() {
	local mac

	. /lib/functions.sh
	. /lib/mvebu.sh

	case $(mvebu_board_name) in
	armada-xp-mamba)
		mac=$(mtd_get_mac_ascii devinfo hw_mac_addr)
		mac_wan=$(macaddr_setbit_la "$mac")
		ifconfig eth0 hw ether $mac 2>/dev/null
		ifconfig eth1 hw ether $mac_wan 2>/dev/null
		;;
	esac
}

boot_hook_add preinit_main preinit_set_mac_address