mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-11-01 10:57:47 +00:00
ipq807x: whitespace cleanup
Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
@@ -39,11 +39,11 @@ ath11k_generate_macs_wf194() {
|
|||||||
echo -ne \\x${mac3//:/\\x} >> /lib/firmware/ath11k-macs
|
echo -ne \\x${mac3//:/\\x} >> /lib/firmware/ath11k-macs
|
||||||
}
|
}
|
||||||
|
|
||||||
ath11k_generate_macs_ion4x() {
|
ath11k_generate_macs_ion4x() {
|
||||||
touch /lib/firmware/ath11k-macs
|
touch /lib/firmware/ath11k-macs
|
||||||
wifimac0=$(grep WLAN0_BASEMAC= /dev/mtd15 |cut -d '=' -f2)
|
wifimac0=$(grep WLAN0_BASEMAC= /dev/mtd15 |cut -d '=' -f2)
|
||||||
wifimac1=$(grep WLAN1_BASEMAC= /dev/mtd15 |cut -d '=' -f2)
|
wifimac1=$(grep WLAN1_BASEMAC= /dev/mtd15 |cut -d '=' -f2)
|
||||||
wifimac2=00:00:00:00:00:00
|
wifimac2=00:00:00:00:00:00
|
||||||
echo -ne \\x${wifimac0//:/\\x} >> /lib/firmware/ath11k-macs
|
echo -ne \\x${wifimac0//:/\\x} >> /lib/firmware/ath11k-macs
|
||||||
echo -ne \\x${wifimac1//:/\\x} >> /lib/firmware/ath11k-macs
|
echo -ne \\x${wifimac1//:/\\x} >> /lib/firmware/ath11k-macs
|
||||||
echo -ne \\x${wifimac2//:/\\x} >> /lib/firmware/ath11k-macs
|
echo -ne \\x${wifimac2//:/\\x} >> /lib/firmware/ath11k-macs
|
||||||
@@ -59,24 +59,24 @@ ath11k_generate_macs_pax1800() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
caldata_die() {
|
caldata_die() {
|
||||||
echo "caldata: " "$*"
|
echo "caldata: " "$*"
|
||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
caldata_extract() {
|
caldata_extract() {
|
||||||
local part=$1
|
local part=$1
|
||||||
local offset=$(($2))
|
local offset=$(($2))
|
||||||
local count=$(($3))
|
local count=$(($3))
|
||||||
local mtd
|
local mtd
|
||||||
|
|
||||||
mtd=$(find_mtd_chardev $part)
|
mtd=$(find_mtd_chardev $part)
|
||||||
if [ -z "$mtd" ]; then
|
if [ -z "$mtd" ]; then
|
||||||
mtd=/dev/$(echo $(find_mmc_part $part) | sed 's/^.\{5\}//')
|
mtd=/dev/$(echo $(find_mmc_part $part) | sed 's/^.\{5\}//')
|
||||||
fi
|
fi
|
||||||
[ -n "$mtd" ] || caldata_die "no mtd device found for partition $part"
|
[ -n "$mtd" ] || caldata_die "no mtd device found for partition $part"
|
||||||
|
|
||||||
dd if=$mtd of=/lib/firmware/$FIRMWARE iflag=skip_bytes bs=$count skip=$offset count=1 2>/dev/null || \
|
dd if=$mtd of=/lib/firmware/$FIRMWARE iflag=skip_bytes bs=$count skip=$offset count=1 2>/dev/null || \
|
||||||
caldata_die "failed to extract calibration data from $mtd"
|
caldata_die "failed to extract calibration data from $mtd"
|
||||||
}
|
}
|
||||||
|
|
||||||
board=$(board_name)
|
board=$(board_name)
|
||||||
@@ -97,7 +97,7 @@ case "$FIRMWARE" in
|
|||||||
tplink,ex227|\
|
tplink,ex227|\
|
||||||
tplink,ex447|\
|
tplink,ex447|\
|
||||||
sercomm,wallaby)
|
sercomm,wallaby)
|
||||||
caldata_extract "0:ART" 0x1000 0x20000
|
caldata_extract "0:ART" 0x1000 0x20000
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
@@ -124,7 +124,7 @@ case "$FIRMWARE" in
|
|||||||
yuncore,fap650|\
|
yuncore,fap650|\
|
||||||
plasmacloud,pax1800-v1|\
|
plasmacloud,pax1800-v1|\
|
||||||
plasmacloud,pax1800-v2)
|
plasmacloud,pax1800-v2)
|
||||||
caldata_extract "0:ART" 0x1000 0x20000
|
caldata_extract "0:ART" 0x1000 0x20000
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
@@ -139,7 +139,7 @@ ath11k/IPQ5018/hw1.0/caldata.bin)
|
|||||||
motorola,q14|\
|
motorola,q14|\
|
||||||
muxi,ap3220l|\
|
muxi,ap3220l|\
|
||||||
qcom,ipq5018-mp03.1)
|
qcom,ipq5018-mp03.1)
|
||||||
caldata_extract "0:ART" 0x1000 0x20000
|
caldata_extract "0:ART" 0x1000 0x20000
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
@@ -149,7 +149,7 @@ ath11k/qcn6122/hw1.0/caldata_1.bin)
|
|||||||
cybertan,eww631-a1|\
|
cybertan,eww631-a1|\
|
||||||
cybertan,eww631-b1|\
|
cybertan,eww631-b1|\
|
||||||
motorola,q14)
|
motorola,q14)
|
||||||
caldata_extract "0:ART" 0x26800 0x20000
|
caldata_extract "0:ART" 0x26800 0x20000
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
@@ -160,7 +160,7 @@ ath11k/qcn6122/hw1.0/caldata_2.bin)
|
|||||||
cybertan,eww631-b1|\
|
cybertan,eww631-b1|\
|
||||||
edgecore,eap104|\
|
edgecore,eap104|\
|
||||||
liteon,wpx8324)
|
liteon,wpx8324)
|
||||||
caldata_extract "0:ART" 0x4c000 0x20000
|
caldata_extract "0:ART" 0x4c000 0x20000
|
||||||
;;
|
;;
|
||||||
muxi,ap3220l)
|
muxi,ap3220l)
|
||||||
caldata_extract "0:ART" 0x26800 0x20000
|
caldata_extract "0:ART" 0x26800 0x20000
|
||||||
@@ -174,7 +174,7 @@ ath11k/QCN9074/hw1.0/caldata_1.bin)
|
|||||||
cybertan,eww622-a1|\
|
cybertan,eww622-a1|\
|
||||||
qcom,ipq5018-mp03.1|\
|
qcom,ipq5018-mp03.1|\
|
||||||
qcom,ipq807x-hk14)
|
qcom,ipq807x-hk14)
|
||||||
caldata_extract "0:ART" 0x26800 0x20000
|
caldata_extract "0:ART" 0x26800 0x20000
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
@@ -182,7 +182,7 @@ ath11k/QCN9074/hw1.0/caldata_2.bin)
|
|||||||
case "$board" in
|
case "$board" in
|
||||||
qcom,ipq807x-hk14|\
|
qcom,ipq807x-hk14|\
|
||||||
qcom,ipq5018-mp03.3)
|
qcom,ipq5018-mp03.3)
|
||||||
caldata_extract "0:ART" 0x4C000 0x20000
|
caldata_extract "0:ART" 0x4C000 0x20000
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
;;
|
;;
|
||||||
@@ -192,7 +192,7 @@ ath11k-macs)
|
|||||||
hfcl,ion4xi_wp|\
|
hfcl,ion4xi_wp|\
|
||||||
hfcl,ion4x|\
|
hfcl,ion4x|\
|
||||||
hfcl,ion4x_2|\
|
hfcl,ion4x_2|\
|
||||||
hfcl,ion4xe)
|
hfcl,ion4xe)
|
||||||
ath11k_generate_macs_ion4x
|
ath11k_generate_macs_ion4x
|
||||||
;;
|
;;
|
||||||
edgecore,eap101)
|
edgecore,eap101)
|
||||||
|
|||||||
Reference in New Issue
Block a user