OpenWrt – Rev 1

Subversion Repositories:
Rev:
#!/bin/ash

[ "$ACTION" == "add" ] || exit 0

PHYNBR=${DEVPATH##*/phy}

[ -n $PHYNBR ] || exit 0

. /lib/functions.sh
. /lib/functions/system.sh

board=$(board_name)

case "$board" in
        archer-c58-v1|\
        archer-c59-v1|\
        archer-c59-v2|\
        archer-c60-v1|\
        archer-c60-v2)
                echo $(macaddr_add $(mtd_get_mac_binary mac 8)  $(($PHYNBR - 1)) ) > /sys${DEVPATH}/macaddress
                ;;
        *)
                ;;
esac