ramips: add D-Link DIR-620 A1 support
[openwrt.git] / target / linux / ramips / base-files / lib / preinit / 06_set_iface_mac
1 #
2 # Copyright (C) 2011 OpenWrt.org
3 #
4
5 preinit_set_mac_address() {
6         local mac
7
8         . /lib/ramips.sh
9
10         case $(ramips_board_name) in
11         3g-6200n)
12                 mac=$(ramips_get_mac_binary factory 4)
13                 ifconfig eth0 hw ether $mac 2>/dev/null
14                 ;;
15         bc2 |\
16         dir-620-a1 |\
17         esr-9753 |\
18         freestation5 |\
19         nw718 |\
20         psr-680w |\
21         rt-n56u |\
22         sl-r7205)
23                 mac=$(ramips_get_mac_binary factory 4)
24                 mac=$(maccalc or "$mac" "02:00:00:00:00:00")
25                 ifconfig eth0 hw ether $mac 2>/dev/null
26                 ;;
27         dir-300-b1 |\
28         dir-300-b2 |\
29         dir-600-b1)
30                 mac=$(ramips_get_mac_binary devdata 16388)
31                 ifconfig eth0 hw ether $mac 2>/dev/null
32                 ;;
33         dap-1350)
34                 mac=$(ramips_get_mac_binary devdata 46)
35                 ifconfig eth0 hw ether $mac 2>/dev/null
36                 ;;
37         all0256n |\
38         all5002 | \
39         fonera20n |\
40         hw550-3g |\
41         nbg-419n |\
42         omni-emb |\
43         w306r-v20 |\
44         w502u    |\
45         wl-330n |\
46         wl-330n3g |\
47         wr6202 |\
48         xdxrn502j)
49                 mac=$(ramips_get_mac_binary factory 40)
50                 ifconfig eth0 hw ether $mac 2>/dev/null
51                 ;;
52         wl341v3)
53                 mac=$(ramips_get_mac_binary board-nvram 65440)
54                 ifconfig eth0 hw ether $mac 2>/dev/null
55                 ;;
56         rt-n10-plus)
57                 mac=$(ramips_get_mac_binary devconf 4)
58                 ifconfig eth0 hw ether $mac 2>/dev/null
59                 ;;
60         esac
61 }
62
63 boot_hook_add preinit_main preinit_set_mac_address