ramips: add support for D-Link DIR-615 H1
[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         dir-615-h1 |\
40         fonera20n |\
41         hw550-3g |\
42         nbg-419n |\
43         omni-emb |\
44         w306r-v20 |\
45         w502u    |\
46         wl-330n |\
47         wl-330n3g |\
48         wr6202 |\
49         xdxrn502j)
50                 mac=$(ramips_get_mac_binary factory 40)
51                 ifconfig eth0 hw ether $mac 2>/dev/null
52                 ;;
53         wl341v3)
54                 mac=$(ramips_get_mac_binary board-nvram 65440)
55                 ifconfig eth0 hw ether $mac 2>/dev/null
56                 ;;
57         rt-n10-plus)
58                 mac=$(ramips_get_mac_binary devconf 4)
59                 ifconfig eth0 hw ether $mac 2>/dev/null
60                 ;;
61         esac
62 }
63
64 boot_hook_add preinit_main preinit_set_mac_address