-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathwfa-tool.bb
More file actions
37 lines (31 loc) · 1.42 KB
/
wfa-tool.bb
File metadata and controls
37 lines (31 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
SUMMARY = "Sigma WFA agent"
DESCRIPTION = "Sigma WFA agent tool used for Wifi pre-certification"
SECTION = "test-tools"
LICENSE = "CLOSED"
PV = "r4.0"
PR = "0"
S = "${EDISONREPO_TOP_DIR}/test_tools/PRIVATE/wfa_tool"
do_install() {
install -v -d ${D}/usr/sbin/
install -m 0755 ${B}/ca/wfa_ca ${D}/usr/sbin
install -m 0755 ${B}/dut/wfa_dut ${D}/usr/sbin
install -m 0755 ${S}/scripts/wfa_send_ping ${D}/usr/sbin
install -m 0755 ${S}/scripts/wfa_send_ping6 ${D}/usr/sbin
install -m 0755 ${S}/scripts/wfa_service ${D}/usr/sbin
install -m 0755 ${S}/scripts/wfa_start_iperf ${D}/usr/sbin
install -m 0755 ${S}/scripts/wfa_stop_iperf ${D}/usr/sbin
install -m 0755 ${S}/scripts/wfa_stop_ping ${D}/usr/sbin
install -m 0755 ${S}/scripts/wfa_start_dhcp_client ${D}/usr/sbin
install -m 0755 ${S}/scripts/wfa_stop_dhcp_client ${D}/usr/sbin
install -m 0755 ${S}/scripts/wfa_start_dhcp_server ${D}/usr/sbin
install -m 0755 ${S}/scripts/wfa_stop_dhcp_server ${D}/usr/sbin
install -v -d ${D}${sysconfdir}/sigma
install -m 644 ${S}/scripts/udhcpd.conf ${D}${sysconfdir}/sigma
install -m 644 ${S}/certificates/cas.pem ${D}${sysconfdir}/sigma
install -m 644 ${S}/certificates/root.pem ${D}${sysconfdir}/sigma
install -m 644 ${S}/certificates/wifiuser.pem ${D}${sysconfdir}/sigma
install -m 644 ${S}/certificates/fast-mschapv2.pac ${D}${sysconfdir}/sigma
}
do_clean() {
make clean
}