ar71xx: add support for TRENDnet TEW-823DRU
[oweals/openwrt.git] / target / linux / ar71xx / base-files / lib / preinit / 05_set_iface_mac_ar71xx
1 #
2 # Copyright (C) 2009 OpenWrt.org
3 #
4
5 . /lib/ar71xx.sh
6
7 fetch_mac_from_mtd() {
8         local mtd_part=$1
9         local lan_env=$2
10         local wan_env=$3
11         local mtd mac
12
13         mtd=$(grep $mtd_part /proc/mtd | cut -d: -f1)
14         [ -z $mtd ] && return
15
16         mac=$(grep $lan_env /dev/$mtd | cut -d= -f2)
17         [ ! -z $mac ] && ifconfig eth0 hw ether $mac 2>/dev/null
18
19         mac=$(grep $wan_env /dev/$mtd | cut -d= -f2)
20         [ ! -z $mac ] && ifconfig eth1 hw ether $mac 2>/dev/null
21 }
22
23 preinit_set_mac_address() {
24         case $(ar71xx_board_name) in
25                 dir-615-c1)
26                         fetch_mac_from_mtd config lan_mac wan_mac
27                         echo 1 > /sys/class/leds/dir-615-c1:green:wancpu/brightness
28                         ;;
29                 dir-615-i1)
30                         fetch_mac_from_mtd nvram sys_lan_mac sys_wan_mac
31                         ;;
32                 mr18)
33                         mac_lan=$(mtd_get_mac_binary_ubi board-config 102)
34                         [ -n "$mac_lan" ] && ifconfig eth0 hw ether "$mac_lan"
35                         ;;
36                 r6100)
37                         mac_lan=$(mtd_get_mac_binary caldata 0)
38                         [ -n "$mac_lan" ] && ifconfig eth1 hw ether "$mac_lan"
39                         mac_wan=$(mtd_get_mac_binary caldata 6)
40                         [ -n "$mac_wan" ] && ifconfig eth0 hw ether "$mac_wan"
41                         ;;
42                 tew-632brp)
43                         fetch_mac_from_mtd config lan_mac wan_mac
44                         ;;
45                 wrt160nl)
46                         fetch_mac_from_mtd nvram lan_hwaddr wan_hwaddr
47                         ;;
48         esac
49 }
50
51 boot_hook_add preinit_main preinit_set_mac_address
52