ath79: Code style improvements in 10_fix_wifi_mac

This fixes one comparison and several useless echos.

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
This commit is contained in:
Adrian Schmutzler 2019-06-22 01:53:57 +02:00 committed by Christian Lamparter
parent 82a8ddd603
commit b16faf9bc7

View file

@ -1,6 +1,6 @@
#!/bin/ash #!/bin/ash
[ "$ACTION" == "add" ] || exit 0 [ "$ACTION" = "add" ] || exit 0
PHYNBR=${DEVPATH##*/phy} PHYNBR=${DEVPATH##*/phy}
@ -17,18 +17,18 @@ case "$board" in
# There is no eeprom data for 5 GHz wlan in "art" partition # There is no eeprom data for 5 GHz wlan in "art" partition
# which would allow to patch the macaddress # which would allow to patch the macaddress
[ "$PHYNBR" -eq 1 ] && \ [ "$PHYNBR" -eq 1 ] && \
echo $(macaddr_add "$(mtd_get_mac_ascii u-boot-env ethaddr)" 1) > /sys${DEVPATH}/macaddress macaddr_add "$(mtd_get_mac_ascii u-boot-env ethaddr)" 1 > /sys${DEVPATH}/macaddress
;; ;;
iodata,wn-ac1600dgr) iodata,wn-ac1600dgr)
# There is no eeprom data for 5 GHz wlan in "art" partition # There is no eeprom data for 5 GHz wlan in "art" partition
# which would allow to patch the macaddress # which would allow to patch the macaddress
[ "$PHYNBR" -eq 0 ] && \ [ "$PHYNBR" -eq 0 ] && \
echo $(macaddr_add "$(mtd_get_mac_ascii u-boot-env ethaddr)" 1) > /sys${DEVPATH}/macaddress macaddr_add "$(mtd_get_mac_ascii u-boot-env ethaddr)" 1 > /sys${DEVPATH}/macaddress
;; ;;
phicomm,k2t) phicomm,k2t)
# The K2T factory firmware does use LAN mac address as the 2.4G wifi mac address # The K2T factory firmware does use LAN mac address as the 2.4G wifi mac address
[ "$PHYNBR" -eq 1 ] && \ [ "$PHYNBR" -eq 1 ] && \
echo $(k2t_get_mac "lan_mac") > /sys${DEVPATH}/macaddress k2t_get_mac "lan_mac" > /sys${DEVPATH}/macaddress
;; ;;
*) *)
;; ;;