meta-digi-arm: Remove worldwide board data file.

https://jira.digi.com/browse/DEL-4291

Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
This commit is contained in:
Alex Gonzalez 2017-05-29 11:26:26 +02:00
parent 4591165832
commit 14a7d127f0
3 changed files with 7 additions and 4 deletions

View File

@ -14,7 +14,6 @@ FW_QCA6564-BT = " \
FW_QCA6564-WIFI = " \
file://bdwlan30_US.bin \
file://bdwlan30_World.bin \
file://LICENCE.atheros_firmware \
file://otp30.bin \
file://qwlan30.bin \
@ -42,7 +41,6 @@ do_install() {
install -d ${D}${base_libdir}/firmware
install -m 0644 \
bdwlan30_US.bin \
bdwlan30_World.bin \
LICENCE.atheros_firmware \
otp30.bin \
qwlan30.bin \

View File

@ -78,8 +78,13 @@ case "${REGULATORY_DOMAIN}" in
${US_CODE})
logger -t qca6564 "Setting US wireless region";;
${WW_CODE}|${JP_CODE})
logger -t qca6564 "Setting WW (world wide) wireless region"
BDATA_SOURCE="${FIRMWARE_DIR}/bdwlan30_World.bin";;
if [ -e "${FIRMWARE_DIR}/bdwlan30_World.bin" ]; then
logger -t qca6564 "Setting WW (world wide) wireless region"
BDATA_SOURCE="${FIRMWARE_DIR}/bdwlan30_World.bin"
else
logger -t qca6564 "[WARN] No WW (worldwide) board data file, using US"
fi
;;
"")
logger -t qca6564 "[WARN] region code not found, using US";;
*)