summaryrefslogtreecommitdiff
path: root/target/linux/mvebu/base-files/lib/preinit/06_set_iface_mac
blob: 30f1370b8f08a10a26094fbb16664704ca96d2fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# 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)
		ifconfig eth0 hw ether $mac 2>/dev/null
		ifconfig eth1 hw ether $mac 2>/dev/null
		;;
	esac
}

boot_hook_add preinit_main preinit_set_mac_address