diff options
Diffstat (limited to 'meta-oe/recipes-connectivity/hostapd/hostapd_2.11.bb')
-rw-r--r-- | meta-oe/recipes-connectivity/hostapd/hostapd_2.11.bb | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/meta-oe/recipes-connectivity/hostapd/hostapd_2.11.bb b/meta-oe/recipes-connectivity/hostapd/hostapd_2.11.bb new file mode 100644 index 0000000000..693afe6c53 --- /dev/null +++ b/meta-oe/recipes-connectivity/hostapd/hostapd_2.11.bb | |||
@@ -0,0 +1,48 @@ | |||
1 | SUMMARY = "User space daemon for extended IEEE 802.11 management" | ||
2 | HOMEPAGE = "http://w1.fi/hostapd/" | ||
3 | SECTION = "kernel/userland" | ||
4 | LICENSE = "BSD-3-Clause" | ||
5 | LIC_FILES_CHKSUM = "file://hostapd/README;beginline=5;endline=47;md5=8e2c69e491b28390f9de0df1f64ebd6d" | ||
6 | |||
7 | DEPENDS = "libnl openssl" | ||
8 | |||
9 | SRC_URI = " \ | ||
10 | http://w1.fi/releases/hostapd-${PV}.tar.gz \ | ||
11 | file://defconfig \ | ||
12 | file://init \ | ||
13 | file://hostapd.service \ | ||
14 | " | ||
15 | |||
16 | |||
17 | SRC_URI[sha256sum] = "2b3facb632fd4f65e32f4bf82a76b4b72c501f995a4f62e330219fe7aed1747a" | ||
18 | |||
19 | inherit update-rc.d systemd pkgconfig features_check | ||
20 | |||
21 | CONFLICT_DISTRO_FEATURES = "openssl-no-weak-ciphers" | ||
22 | |||
23 | INITSCRIPT_NAME = "hostapd" | ||
24 | |||
25 | SYSTEMD_SERVICE:${PN} = "hostapd.service" | ||
26 | SYSTEMD_AUTO_ENABLE:${PN} = "disable" | ||
27 | |||
28 | do_configure:append() { | ||
29 | install -m 0644 ${UNPACKDIR}/defconfig ${B}/hostapd/.config | ||
30 | } | ||
31 | |||
32 | do_compile() { | ||
33 | export CFLAGS="-MMD -O2 -Wall -g" | ||
34 | export EXTRA_CFLAGS="${CFLAGS}" | ||
35 | make -C hostapd V=1 | ||
36 | } | ||
37 | |||
38 | do_install() { | ||
39 | install -d ${D}${sbindir} ${D}${sysconfdir}/init.d ${D}${systemd_unitdir}/system/ | ||
40 | install -m 0644 ${B}/hostapd/hostapd.conf ${D}${sysconfdir} | ||
41 | install -m 0755 ${B}/hostapd/hostapd ${D}${sbindir} | ||
42 | install -m 0755 ${B}/hostapd/hostapd_cli ${D}${sbindir} | ||
43 | install -m 755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/hostapd | ||
44 | install -m 0644 ${UNPACKDIR}/hostapd.service ${D}${systemd_unitdir}/system/ | ||
45 | sed -i -e 's,@SBINDIR@,${sbindir},g' -e 's,@SYSCONFDIR@,${sysconfdir},g' ${D}${systemd_unitdir}/system/hostapd.service | ||
46 | } | ||
47 | |||
48 | CONFFILES:${PN} += "${sysconfdir}/hostapd.conf" | ||