mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-25 00:11:13 +00:00
6a27e8036e
The out-of-tree qcom-smem patches traditionally displayed mtd partition names in upper case, starting with the new mainline qcom-smem support in kernel v5.10, it switched to normalizing the partition names to lower case. While both 5.4 and 5.10 were supported in the target, we carried a workaround to support both of them. Since the target has dropped 5.4 recently, those can be removed now. Ref:2db9dded0a
("ipq806x: nbg6817: case-insensitive qcom-smem partitions")435dc2e77e
("ipq806x: ecw5410: case-insensitive qcom-smem partitions")f70e11cd97
("ipq806x: g10: case-insensitive qcom-smem partitions") Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
106 lines
2.1 KiB
Bash
106 lines
2.1 KiB
Bash
#!/bin/sh
|
|
|
|
[ -e /lib/firmware/$FIRMWARE ] && exit 0
|
|
|
|
. /lib/functions/caldata.sh
|
|
|
|
board=$(board_name)
|
|
|
|
case "$FIRMWARE" in
|
|
"ath10k/pre-cal-pci-0000:01:00.0.bin")
|
|
case $board in
|
|
askey,rt4230w-rev6)
|
|
caldata_extract "0:ART" 0x1000 0x2f20
|
|
;;
|
|
asrock,g10)
|
|
caldata_extract "0:art" 0x1000 0x2f20
|
|
;;
|
|
buffalo,wxr-2533dhp)
|
|
caldata_extract "ART" 0x1000 0x2f20
|
|
;;
|
|
edgecore,ecw5410)
|
|
caldata_extract "0:art" 0x1000 0x2f20
|
|
;;
|
|
linksys,ea7500-v1 |\
|
|
linksys,ea8500)
|
|
caldata_extract "art" 0x1000 0x2f20
|
|
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_ascii devinfo hw_mac_addr) 1)
|
|
;;
|
|
nec,wg2600hp |\
|
|
nec,wg2600hp3)
|
|
caldata_extract "ART" 0x1000 0x2f20
|
|
;;
|
|
netgear,d7800 |\
|
|
netgear,r7500v2 |\
|
|
netgear,r7800)
|
|
caldata_extract "art" 0x1000 0x2f20
|
|
;;
|
|
netgear,xr500)
|
|
caldata_extract "art" 0x1000 0x2f20
|
|
;;
|
|
tplink,ad7200 |\
|
|
tplink,c2600)
|
|
caldata_extract "radio" 0x1000 0x2f20
|
|
;;
|
|
tplink,vr2600v)
|
|
caldata_extract "ART" 0x1000 0x2f20
|
|
;;
|
|
zyxel,nbg6817)
|
|
caldata_extract "0:art" 0x1000 0x2f20
|
|
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_ascii 0:appsblenv ethaddr) 1)
|
|
;;
|
|
esac
|
|
;;
|
|
"ath10k/pre-cal-pci-0001:01:00.0.bin")
|
|
case $board in
|
|
askey,rt4230w-rev6)
|
|
caldata_extract "0:ART" 0x5000 0x2f20
|
|
;;
|
|
asrock,g10)
|
|
caldata_extract "0:art" 0x5000 0x2f20
|
|
;;
|
|
buffalo,wxr-2533dhp)
|
|
caldata_extract "ART" 0x5000 0x2f20
|
|
;;
|
|
linksys,ea7500-v1 |\
|
|
linksys,ea8500)
|
|
caldata_extract "art" 0x5000 0x2f20
|
|
ath10k_patch_mac $(macaddr_add $(mtd_get_mac_ascii devinfo hw_mac_addr) 2)
|
|
;;
|
|
nec,wg2600hp |\
|
|
nec,wg2600hp3)
|
|
caldata_extract "ART" 0x5000 0x2f20
|
|
;;
|
|
netgear,d7800 |\
|
|
netgear,r7500v2 |\
|
|
netgear,r7800)
|
|
caldata_extract "art" 0x5000 0x2f20
|
|
;;
|
|
netgear,xr500)
|
|
caldata_extract "art" 0x5000 0x2f20
|
|
;;
|
|
tplink,ad7200 |\
|
|
tplink,c2600)
|
|
caldata_extract "radio" 0x5000 0x2f20
|
|
;;
|
|
tplink,vr2600v)
|
|
caldata_extract "ART" 0x5000 0x2f20
|
|
;;
|
|
zyxel,nbg6817)
|
|
caldata_extract "0:art" 0x5000 0x2f20
|
|
ath10k_patch_mac $(mtd_get_mac_ascii 0:appsblenv ethaddr)
|
|
;;
|
|
esac
|
|
;;
|
|
"ath10k/pre-cal-pci-0002:01:00.0.bin")
|
|
case $board in
|
|
edgecore,ecw5410)
|
|
caldata_extract "0:art" 0x5000 0x2f20
|
|
;;
|
|
esac
|
|
;;
|
|
*)
|
|
exit 1
|
|
;;
|
|
esac
|