yocto2.6: update openssl options
It's unclear why, but yocto 2.6 seems to be checking our options
settings for correctness. We seem to have typos on one option
"no-engine" vs "no-engines". Unfortunately python-cryptography expodes
in spectacular fashion if we _actually_ disable engines, so simply
delete the option for now.
We also have options that don't exist, like ripemd160. Remove the
non-existing options.
Change-Id: Ie20aab41844ed6af95cb53e9f89243419c51f471
Signed-off-by: Ed Tanous <ed.tanous@intel.com>
diff --git a/recipes-connectivity/openssl/openssl_%.bbappend b/recipes-connectivity/openssl/openssl_%.bbappend
index e248be6..51e64ad 100644
--- a/recipes-connectivity/openssl/openssl_%.bbappend
+++ b/recipes-connectivity/openssl/openssl_%.bbappend
@@ -1,12 +1,12 @@
# General config settings.
-EXTRA_OECONF_append_class-target = " shared no-hw no-err no-psk no-srp no-engines "
+EXTRA_OECONF_append_class-target = " shared no-hw no-err no-psk no-srp "
# Disable SSL (keep TLS only).
EXTRA_OECONF_append_class-target = " no-ssl2 no-ssl3 "
# Disable various algorithms.
EXTRA_OECONF_append_class-target = " no-idea no-md2 no-mdc2 no-rc5 no-md4 \
- no-ripemd160 no-rmd160 no-whirlpool no-sha0 no-camellia \
+ no-rmd160 no-whirlpool no-camellia \
no-rc2 no-rc4 no-bf no-cast no-seed no-gost "
do_configure_append() {