mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00

我只是执行者,有问题请找 “Redmi ax6 机友会”(522966467)里面的群主 和陈超(269806631)等狗管理和伪君子反馈。 I'm just an executor. If you have any questions, please contact the group owner and Chen Chao (269806631) management and hypocrites in the "Redmi ax6 Friends Club" (522966467) for feedback. 私はただの遺言執行者です。ご不明な点がございましたら、グループのオ ーナーである Chen Chao(269806631)や、「Redmi ax6 Friends Club」 (522966467)の他のマネージャーや偽善者にお問い合わせください。 Unanimous approval from the entire development team. Ref: https://t.me/chenchao_rip/4 Cc: lean <coolsnowwolf@gmail.com> Cc: asushugo <429632952@163.com> CC: CN_SZTL <cnsztl@immortalwrt.org> Cc: AmadeusGhost <amadeus@immortalwrt.org>
24 lines
323 B
Bash
24 lines
323 B
Bash
#!/bin/sh
|
|
|
|
[ -e /lib/firmware/$FIRMWARE ] && exit 0
|
|
|
|
. /lib/functions/caldata.sh
|
|
|
|
board=$(board_name)
|
|
|
|
case "$FIRMWARE" in
|
|
"ath11k/IPQ8074/hw2.0/caldata.bin")
|
|
case "$board" in
|
|
qnap,301w)
|
|
caldata_extract "0:art" 0x1000 0x20000
|
|
;;
|
|
zte,mf269)
|
|
caldata_extract "0:ART" 0x1000 0x20000
|
|
;;
|
|
esac
|
|
;;
|
|
*)
|
|
exit 1
|
|
;;
|
|
esac
|