summaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac
blob: 4be625bd1ea1b4974ec95631a532961fbb3da8db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# Copyright (C) 2011 OpenWrt.org
#

nw718_set_mac() {
	local part
	local mac

	[ -z $(which maccalc) ] && return

	. /etc/functions.sh

	part=$(find_mtd_part "factory")
	[ -z $part ] && return

	mac=$(dd bs=1 skip=4 count=6 if=$part 2>/dev/null | maccalc bin2mac)
	[ -z $mac ] && return

	mac=$(maccalc or "$mac" "02:00:00:00:00:00")
	ifconfig eth0 hw ether $mac 2>/dev/null
}

preinit_set_mac_address() {
	. /lib/ramips.sh

	case $(ramips_board_name) in
	nw718)
		nw718_set_mac
		;;
	esac
}

boot_hook_add preinit_main preinit_set_mac_address