mpc85xx: add support for OCEDO Panda
[openwrt/openwrt.git] / target / linux / mpc85xx / base-files / etc / hotplug.d / ieee80211 / 10-fix-wifi-mac
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
12 board=$(board_name)
13
14 case "$board" in
15 ocedo,panda)
16 WMAC=wmac$(($PHYNBR + 1))
17 MAC=$(mtd_get_mac_ascii uboot-env0 ${WMAC})
18 echo ${MAC} > /sys${DEVPATH}/macaddress
19 ;;
20 sophos,red-15w-rev1)
21 echo $(mtd_get_mac_ascii u-boot-env ethaddr) > /sys${DEVPATH}/macaddress
22 ;;
23 *)
24 ;;
25 esac