blob: 6d98e3a888be95760cde38c7f0500055250db678 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001SUMMARY = "User mode helpers for the hostap driver"
2DESCRIPTION = "The hostap driver supports Host AP mode, it allows for IEEE 802.11 \
3management functions on the host computer and allows the system to act as an access point."
Brad Bishopd7bf8c12018-02-25 22:55:05 -05004HOMEPAGE = "https://w1.fi"
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005LICENSE = "GPLv2"
6LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \
7 file://util.c;beginline=1;endline=9;md5=d3b9280851302e5ba34e5fb717489b6d"
8SECTION = "kernel/userland"
9PR = "r4"
10
Brad Bishopd7bf8c12018-02-25 22:55:05 -050011SRC_URI = "https://w1.fi/releases/hostap-utils-${PV}.tar.gz \
Patrick Williamsf1e5d692016-03-30 15:21:19 -050012 file://hostap-fw-load.patch \
13 file://0001-Define-_u32-__s32-__u16-__s16-__u8-in-terms-of-c99-t.patch \
14"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015S = "${WORKDIR}/hostap-utils-${PV}"
16
17BINARIES = "hostap_crypt_conf hostap_diag hostap_fw_load hostap_io_debug \
18 hostap_rid prism2_param prism2_srec split_combined_hex"
19
20do_install() {
21 install -d ${D}${sbindir}/
22 for f in ${BINARIES}
23 do
24 install -m 0755 $f ${D}${sbindir}/
25 done
26}
27