blob: fd0c2e7422658509d5dfd4d1550caa2ab6ff3d0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright (C) 2018-2020 NXP
require firmware-qca.inc
SUMMARY = "Qualcomm Wi-Fi and Bluetooth tools"
DESCRIPTION = "Qualcomm Wi-Fi and Bluetooth tools for modules such as QCA6174A and QCA9377"
LICENSE = "Proprietary"
DEPENDS = "libnl zlib"
FCC_TOOLS_FOLDER ?= "qca9377_qca6174_arm32"
FCC_TOOLS_FOLDER:aarch64 = "qca9377_qca6174_arm64"
do_install() {
install -d ${D}${sbindir}/fcc_tools
cp -r ${S}/fcc_tools/${FCC_TOOLS_FOLDER} ${D}${sbindir}/fcc_tools
}
COMPATIBLE_HOST = '(aarch64|arm).*-linux'
COMPATIBLE_HOST:libc-musl = 'null'
|