blob: 66eb6b98a4eda2fc0dfab0aa9e3b1237c9b3a7bd (
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
34
35
36
37
38
39
40
41
42
|
#
# Copyright (C) 2011 OpenWrt.org
#
preinit_set_mac_address() {
local mac
. /lib/ramips.sh
case $(ramips_board_name) in
bc2 |\
esr-9753 |\
nw718 |\
rt-n56u |\
sl-r7205)
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
;;
all0256n |\
hw550-3g |\
nbg-419n |\
omni-emb |\
w502u |\
wr6202)
mac=$(ramips_get_mac_binary factory 40)
ifconfig eth0 hw ether $mac 2>/dev/null
;;
wl341v3)
mac=$(ramips_get_mac_binary board-nvram 65440)
ifconfig eth0 hw ether $mac 2>/dev/null
;;
esac
}
boot_hook_add preinit_main preinit_set_mac_address
|