From 361c4027b36ff9383bb9e4d2257259160abd833d Mon Sep 17 00:00:00 2001 From: Pengfei Zhang Date: Wed, 19 Nov 2025 18:10:25 -0800 Subject: [PATCH 1/2] recipes-connectivity: Added recipe for qcom-ath11k-fwtest This patch introduces a new recipe for qcom-ath11k-fwtest, which fetches Qualcomm ath11k firmware test utility from QArtifactory. This utility facilitates function testing and validation of ath11k firmware. Signed-off-by: Pengfei Zhang --- .../control_app_dut/qcom-ath11k-fwtest_1.0.bb | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 recipes-connectivity/control_app_dut/qcom-ath11k-fwtest_1.0.bb diff --git a/recipes-connectivity/control_app_dut/qcom-ath11k-fwtest_1.0.bb b/recipes-connectivity/control_app_dut/qcom-ath11k-fwtest_1.0.bb new file mode 100644 index 000000000..7fc51d88d --- /dev/null +++ b/recipes-connectivity/control_app_dut/qcom-ath11k-fwtest_1.0.bb @@ -0,0 +1,29 @@ +SUMMARY = "Prebuilt Qualcomm ath11k firmware test utilities" +DESCRIPTION = "Prebuilt ath11k firmware test and validation utility" +LICENSE = "CLOSED" + +PBT_BUILD_DATE = "251113.1" +ARTIFACTORY_URL = "https://qartifactory-edge.qualcomm.com/artifactory/qsc_releases/software/chip/component/wlan-service.qclinux.0.0/${PBT_BUILD_DATE}/prebuilt_yocto" +SOC_ARCH = "armv8-2a" + +SRC_URI = "${ARTIFACTORY_URL}/qcom-ath11k-fwtest_1.0_${SOC_ARCH}.tar.gz" +SRC_URI[sha256sum] = "40ce6dbbda86e95406bc5a74ebe62c99eb63242305f74b7234998dfdffb2fbc5" + +S = "${UNPACKDIR}" + +RDEPENDS:${PN} += "libnl libnl-genl" + +# This package is currently only used and tested on ARMv8 (aarch64) machines. +# Therefore, builds for other architectures are not necessary and are explicitly excluded. +COMPATIBLE_MACHINE = "^$" +COMPATIBLE_MACHINE:aarch64 = "(.*)" + +do_install() { + # Create any additional directories that might be needed + install -d ${D}${sbindir} + + # Install the prebuilt files maintaining the directory structure + install -m 0755 ${S}/usr/sbin/* ${D}${sbindir}/ +} + +INSANE_SKIP:${PN} = "already-stripped" From 98d0725e7a639ceff208263cfe55c039936f75fe Mon Sep 17 00:00:00 2001 From: Pengfei Zhang Date: Wed, 19 Nov 2025 18:12:43 -0800 Subject: [PATCH 2/2] recipes-connectivity: Added recipe for qcom-ctrl-app-dut This patch introduces a new recipe for qcom-ctrl-app-dut, which fetches Qualcomm Control Application DUT utilities as a prebuilt binary package from QArtifactory. This utility is used for QuickTrack test for PMF, RACK certifications. Signed-off-by: Pengfei Zhang --- .../control_app_dut/qcom-ctrl-app-dut_1.0.bb | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 recipes-connectivity/control_app_dut/qcom-ctrl-app-dut_1.0.bb diff --git a/recipes-connectivity/control_app_dut/qcom-ctrl-app-dut_1.0.bb b/recipes-connectivity/control_app_dut/qcom-ctrl-app-dut_1.0.bb new file mode 100644 index 000000000..45ae2ff88 --- /dev/null +++ b/recipes-connectivity/control_app_dut/qcom-ctrl-app-dut_1.0.bb @@ -0,0 +1,27 @@ +SUMMARY = "Prebuilt Qualcomm Control Application DUT utilities" +DESCRIPTION = "Qualcomm Technologies Control Application for Device Under Test" +LICENSE = "CLOSED" + +PBT_BUILD_DATE = "251028" +ARTIFACTORY_URL = "https://qartifactory-edge.qualcomm.com/artifactory/qsc_releases/software/chip/component/wlan-service.qclinux.0.0/${PBT_BUILD_DATE}/prebuilt_yocto" +SOC_ARCH = "armv8-2a" + +SRC_URI = "${ARTIFACTORY_URL}/qcom-ctrl-app-dut_1.0_${SOC_ARCH}.tar.gz" +SRC_URI[sha256sum] = "c639b71a3df65ec87a93c96e3bc68eb736fc5d9e9fafcaa6487df97a0e9638f1" + +S = "${UNPACKDIR}" + +# This package is currently only used and tested on ARMv8 (aarch64) machines. +# Therefore, builds for other architectures are not necessary and are explicitly excluded. +COMPATIBLE_MACHINE = "^$" +COMPATIBLE_MACHINE:aarch64 = "(.*)" + +do_install() { + # Create any additional directories that might be needed + install -d ${D}${sbindir} + + # Install the prebuilt files maintaining the directory structure + install -m 0755 ${S}/usr/sbin/* ${D}${sbindir}/ +} + +INSANE_SKIP:${PN} = "already-stripped"