diff options
author | Slater, Joseph <joe.slater@windriver.com> | 2018-03-13 19:15:10 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2018-03-21 18:34:24 -0700 |
commit | 0be593bd12d5c51dfa9358e51a0c1668acb449c1 (patch) | |
tree | 1860f23f011af6bf91532f827f64440bff4c64fd /meta-oe/recipes-connectivity | |
parent | c8085418644f49e167272d170ebad8c25b2e22f2 (diff) | |
download | meta-openembedded-0be593bd12d5c51dfa9358e51a0c1668acb449c1.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>
Diffstat (limited to 'meta-oe/recipes-connectivity')
-rw-r--r-- | meta-oe/recipes-connectivity/hostapd/hostapd_2.6.bb | 5 |
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" | |||
5 | DEPENDS = "libnl openssl" | 5 | DEPENDS = "libnl openssl" |
6 | SUMMARY = "User space daemon for extended IEEE 802.11 management" | 6 | SUMMARY = "User space daemon for extended IEEE 802.11 management" |
7 | 7 | ||
8 | inherit update-rc.d systemd | 8 | inherit update-rc.d systemd distro_features_check |
9 | |||
10 | CONFLICT_DISTRO_FEATURES = "openssl-no-weak-ciphers" | ||
11 | |||
9 | INITSCRIPT_NAME = "hostapd" | 12 | INITSCRIPT_NAME = "hostapd" |
10 | 13 | ||
11 | SYSTEMD_SERVICE_${PN} = "hostapd.service" | 14 | SYSTEMD_SERVICE_${PN} = "hostapd.service" |