summaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/base-files/lib/preinit/06_set_iface_mac
blob: 69b9cdfa5930f462a1e341023fad6445f9313a33 (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
#
# Copyright (C) 2011 OpenWrt.org
#

preinit_set_mac_address() {
	local mac

	. /lib/ramips.sh

	case $(ramips_board_name) in
	bc2 | nw718)
		mac=$(ramips_get_mac_binary factory 4)
		mac=$(maccalc or "$mac" "02:00:00:00:00:00")
		ifconfig eth0 hw ether $mac 2>/dev/null
		;;
	hw550-3g |\
	nbg-419n)
		mac=$(ramips_get_mac_binary factory 40)
		ifconfig eth0 hw ether $mac 2>/dev/null
		;;
	esac
}

boot_hook_add preinit_main preinit_set_mac_address