openwrt-ipq-breeze303/target/linux/qualcommax/ipq60xx/base-files/etc/hotplug.d/firmware/11-ath11-caldata
breeze303 430504d94a
ipq60xx: jdc ax6600 Fix line breaks
Signed-off-by: breeze303 <122870904+breeze303@users.noreply.github.com>
2024-10-14 09:38:59 +08:00

43 lines
770 B
Bash

#!/bin/sh
[ -e /lib/firmware/$FIRMWARE ] && exit 0
. /lib/functions/caldata.sh
board=$(board_name)
case "$FIRMWARE" in
"ath11k/IPQ6018/hw1.0/cal-ahb-c000000.wifi.bin")
case "$board" in
8devices,mango-dvk)
caldata_extract "0:ART" 0x1000 0x20000
;;
cambiumnetworks,xe3-4)
caldata_extract "0:ART" 0x1000 0x10000
;;
jdcloud,ax1800-pro)
caldata_extract_mmc "0:ART" 0x1000 0x10000
;;
netgear,wax214)
caldata_extract "0:art" 0x1000 0x10000
;;
yuncore,fap650)
caldata_extract "0:art" 0x1000 0x20000
;;
esac
;;
"ath11k/QCN9074/hw1.0/cal-pci-0000:01:00.0.bin")
case "$board" in
jdcloud,ax6600)
caldata_extract_mmc "0:ART" 0x26800 0x20000
;;
cambiumnetworks,xe3-4)
caldata_extract "0:ART" 0x26800 0x20000
;;
esac
;;
*)
exit 1
;;
esac