29 lines
481 B
Text
29 lines
481 B
Text
|
#!/bin/sh
|
||
|
|
||
|
[ -e /lib/firmware/$FIRMWARE ] && exit 0
|
||
|
|
||
|
. /lib/functions/caldata.sh
|
||
|
. /lib/functions/mikrotik-caldata.sh
|
||
|
|
||
|
board=$(board_name)
|
||
|
|
||
|
case "$FIRMWARE" in
|
||
|
"ath10k/cal-pci-0000:00:00.0.bin")
|
||
|
case $board in
|
||
|
mikrotik,routerboard-wap-g-5hact2hnd)
|
||
|
mikrotik_caldata_extract "art" 0x5000 0x844
|
||
|
;;
|
||
|
esac
|
||
|
;;
|
||
|
"ath10k/cal-pci-0000:01:00.0.bin")
|
||
|
case $board in
|
||
|
mikrotik,routerboard-922uags-5hpacd)
|
||
|
mikrotik_caldata_extract "art" 0x5000 0x844
|
||
|
;;
|
||
|
esac
|
||
|
;;
|
||
|
*)
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|