OpenWrt – Blame information for rev 3

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 #!/bin/ash
2  
3 [ "$ACTION" == "add" ] || exit 0
4  
5 PHYNBR=${DEVPATH##*/phy}
6  
7 [ -n $PHYNBR ] || exit 0
8  
9 . /lib/functions.sh
10 . /lib/functions/system.sh
11  
3 office 12 board=$(board_name)
1 office 13  
3 office 14 case "$board" in
15 linksys,ea8500)
16 echo $(macaddr_add $(mtd_get_mac_ascii devinfo hw_mac_addr) $(($PHYNBR + 1)) ) > /sys${DEVPATH}/macaddress
17 ;;
18 nec,wg2600hp)
19 echo $(macaddr_add $(mtd_get_mac_binary PRODUCTDATA 12) $((1 - $PHYNBR)) ) > /sys${DEVPATH}/macaddress
20 ;;
21 netgear,d7800 |\
22 netgear,r7500v2 |\
23 netgear,r7800)
24 echo $(macaddr_add $(mtd_get_mac_binary art 6) $(($PHYNBR + 1)) ) > /sys${DEVPATH}/macaddress
25 ;;
26 tplink,c2600)
27 echo $(macaddr_add $(mtd_get_mac_binary default-mac 8) $(($PHYNBR - 1)) ) > /sys${DEVPATH}/macaddress
28 ;;
29 tplink,vr2600v)
30 echo $(macaddr_add $(mtd_get_mac_binary default-mac 0) $(($PHYNBR - 1)) ) > /sys${DEVPATH}/macaddress
31 ;;
32 zyxel,nbg6817)
33 echo $(macaddr_add $(mtd_get_mac_ascii 0:APPSBLENV ethaddr) $((1 - $PHYNBR)) ) > /sys${DEVPATH}/macaddress
34 ;;
35 *)
36 ;;
37 esac