]> code.ossystems Code Review - meta-freescale.git/commitdiff
qca-tools: Limit to arm/arm64 hosts alone
authorKhem Raj <raj.khem@gmail.com>
Wed, 17 Apr 2019 04:34:12 +0000 (21:34 -0700)
committerOtavio Salvador <otavio@ossystems.com.br>
Wed, 17 Apr 2019 11:46:22 +0000 (08:46 -0300)
The firmware ends up in stripping errors on non-arm arches
rightly so since the binaries are arm arch specific.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
recipes-bsp/firmware-qca/qca-tools_2.0.1.bb

index 480a90fdc4aea77652003518774b5572e3004402..f3008c1b25aeab2094917ee185c4a3af31bd6faa 100644 (file)
@@ -15,3 +15,5 @@ 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'