mpc85xx: tidy up 10-fix-wifi-mac
[openwrt/staging/dedeckeh.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 enterasys,ws-ap3710i)
16 mtd_get_mac_ascii cfg2 RADIOADDR${PHYNBR} > /sys${DEVPATH}/macaddress
17 ;;
18 ocedo,panda)
19 mtd_get_mac_ascii uboot-env0 wmac$(($PHYNBR + 1)) > /sys${DEVPATH}/macaddress
20 ;;
21 sophos,red-15w-rev1)
22 mtd_get_mac_ascii u-boot-env ethaddr > /sys${DEVPATH}/macaddress
23 ;;
24 esac