blob: f1d641cd29b3a5cae825fddd51a8919f709d5f92 (
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
|
#
# Copyright (C) 2011 OpenWrt.org
#
preinit_set_mac_address() {
local mac
. /lib/ramips.sh
case $(ramips_board_name) in
bc2 | nw718 | esr-9753)
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
;;
dir-300-b1 |\
dir-300-b2 |\
dir-600-b1)
mac=$(ramips_get_mac_binary devdata 16388)
ifconfig eth0 hw ether $mac 2>/dev/null
;;
hw550-3g |\
nbg-419n |\
omni-emb |\
w502u)
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
|