summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlater, Joseph <joe.slater@windriver.com>2018-03-13 19:15:10 -0700
committerArmin Kuster <akuster808@gmail.com>2018-03-16 19:56:55 -0700
commit1eb88dce7da95d9f299deb65ed16c04de19bbcf6 (patch)
tree6bb971708006b46e0d495f5525d76cdce2b0d2b2
parentbb4329a52c6b4c1e78f434b9dcaa8def1b3ee163 (diff)
downloadmeta-openembedded-1eb88dce7da95d9f299deb65ed16c04de19bbcf6.tar.gz
hostapd: not compatible with openssl-no-weak-ciphers
Use CONFLICT_DISTRO_FEATURES to not build if des is not supported. Signed-off-by: Joe Slater <joe.slater@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-oe/recipes-connectivity/hostapd/hostapd_2.6.bb5
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-oe/recipes-connectivity/hostapd/hostapd_2.6.bb b/meta-oe/recipes-connectivity/hostapd/hostapd_2.6.bb
index c3a1eadfd..54c9e7957 100644
--- a/meta-oe/recipes-connectivity/hostapd/hostapd_2.6.bb
+++ b/meta-oe/recipes-connectivity/hostapd/hostapd_2.6.bb
@@ -5,7 +5,10 @@ LIC_FILES_CHKSUM = "file://${B}/README;md5=8aa4e8c78b59b12016c4cb2d0a8db350"
5DEPENDS = "libnl openssl" 5DEPENDS = "libnl openssl"
6SUMMARY = "User space daemon for extended IEEE 802.11 management" 6SUMMARY = "User space daemon for extended IEEE 802.11 management"
7 7
8inherit update-rc.d systemd 8inherit update-rc.d systemd distro_features_check
9
10CONFLICT_DISTRO_FEATURES = "openssl-no-weak-ciphers"
11
9INITSCRIPT_NAME = "hostapd" 12INITSCRIPT_NAME = "hostapd"
10 13
11SYSTEMD_SERVICE_${PN} = "hostapd.service" 14SYSTEMD_SERVICE_${PN} = "hostapd.service"