[oe-commits] [meta-openembedded] 01/15: wifi-test-suite: Initial recipe for wifi test suite.

git at git.openembedded.org git at git.openembedded.org
Sun Dec 23 17:48:08 UTC 2018


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit 4abedd8505d2c68756bf273c313a671180c98311
Author: Ankit Navik <ankit.tarot at gmail.com>
AuthorDate: Sun Dec 23 13:54:43 2018 +0530

    wifi-test-suite: Initial recipe for wifi test suite.
    
    Add generic recipe for wifi test suite from wifi alliance.
    Suite is to support certification program development and device certification.
    
    Signed-off-by: Ankit Navik <ankit.tarot at gmail.com>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 .../wifi-test-suite/wifi-test-suite_git.bb         | 43 ++++++++++++++++++++++
 1 file changed, 43 insertions(+)

diff --git a/meta-oe/recipes-connectivity/wifi-test-suite/wifi-test-suite_git.bb b/meta-oe/recipes-connectivity/wifi-test-suite/wifi-test-suite_git.bb
new file mode 100644
index 0000000..3890f2f
--- /dev/null
+++ b/meta-oe/recipes-connectivity/wifi-test-suite/wifi-test-suite_git.bb
@@ -0,0 +1,43 @@
+SUMMARY  = "Wi-Fi Test Suite Linux Control Agent"
+DESCRIPTION = "Wi-Fi Test Suite is a software platform originally developed \
+by Wi-Fi Alliance, the global non-profit industry association that brings you \
+Wi-Fi, to support certification program development and device certification."
+HOMEPAGE = "https://www.wi-fi.org/certification/wi-fi-test-suite"
+LICENSE  = "ISC"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=0542427ed5c315ca34aa09ae7a85ed32"
+SECTION = "test"
+
+S = "${WORKDIR}/git"
+SRCREV = "f7a8d7ef7d1a831c1bb47de21fa083536ea2f3a9"
+SRC_URI = "git://github.com/Wi-FiTestSuite/Wi-FiTestSuite-Linux-DUT.git"
+
+
+do_compile () {
+	oe_runmake
+}
+
+do_install () {
+	install -d ${D}${libdir}
+	install -m 0644 ${S}/lib/libwfa.a ${D}${libdir}
+	install -m 0644 ${S}/lib/libwfa_ca.a ${D}${libdir}
+	install -m 0644 ${S}/lib/libwfa_dut.a ${D}${libdir}
+	install -d ${D}${sbindir}
+	install -m 0755 ${S}/dut/wfa_dut ${D}${sbindir}
+	install -m 0755 ${S}/ca/wfa_ca ${D}${sbindir}
+	install -m 0755 ${S}/WTGService/WTG ${D}${sbindir}
+	install -m 0755 ${S}/console_src/wfa_con ${D}${sbindir}
+# Test scripts
+	install -m 0644 ${S}/scripts/getipconfig.sh ${D}${sbindir} # Must copy
+	install -m 0644 ${S}/scripts/arp_neigh_loop ${D}${sbindir}
+	install -m 0644 ${S}/scripts/dev_send_frame ${D}${sbindir}
+	install -m 0644 ${S}/scripts/findprocess.sh ${D}${sbindir}
+	install -m 0644 ${S}/scripts/getpid.sh ${D}${sbindir}
+	install -m 0644 ${S}/scripts/getpstats.sh ${D}${sbindir}
+	install -m 0644 ${S}/scripts/gpstats.sh ${D}${sbindir}
+	install -m 0644 ${S}/scripts/sta_reset_parm ${D}${sbindir}
+	install -m 0644 ${S}/scripts/stoping.sh ${D}${sbindir}
+	install -m 0644 ${S}/scripts/updatepid.sh ${D}${sbindir}
+	install -m 0644 ${S}/scripts/wfaping6.sh ${D}${sbindir}
+	install -m 0644 ${S}/scripts/wfaping.sh ${D}${sbindir}
+	install -m 0644 ${S}/scripts/wfa_test_cli.sh ${D}${sbindir}
+}

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list