blob: 0c5ed3b2149f9d6eec8c9a8c66b44aad5f77c3db [file] [log] [blame]
Patrick Williams26ece152015-09-22 21:59:41 -05001# General config settings.
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08002EXTRA_OECONF_append_class-target = " shared no-hw no-err no-psk no-srp "
Patrick Williams26ece152015-09-22 21:59:41 -05003
4# Disable SSL (keep TLS only).
Ed Tanous2ee96f52018-09-07 10:18:44 -07005EXTRA_OECONF_append_class-target = " no-ssl2 no-ssl3 "
Patrick Williams26ece152015-09-22 21:59:41 -05006
7# Disable various algorithms.
Andrew Geisslerf133cfa2021-02-22 08:12:15 -06008EXTRA_OECONF_append_class-target = " no-md4 no-rmd160 no-whirlpool \
9 no-rc2 no-rc4 no-bf no-cast no-gost "
Patrick Williams3dbac6d2016-05-26 18:03:12 -050010do_configure_append() {
11 oe_runmake depend
12}
William A. Kennington III2db4f502019-01-14 19:16:40 -080013
14# We don't want to depend on perl in our image
15RDEPENDS_${PN}-bin_remove = "perl"
16FILES_${PN}-misc_append = " ${bindir}/c_rehash"