blob: 004d8dc71844b18d27c611bcf4df0570eff986ef [file] [log] [blame]
Patrick Williams8e8d5032015-09-22 21:59:41 -05001# General config settings.
Ed Tanous469631b2018-12-16 17:36:07 -08002EXTRA_OECONF_append_class-target = " shared no-hw no-err no-psk no-srp "
Patrick Williams8e8d5032015-09-22 21:59:41 -05003
4# Disable SSL (keep TLS only).
Ed Tanouse5217202018-09-07 10:18:44 -07005EXTRA_OECONF_append_class-target = " no-ssl2 no-ssl3 "
Patrick Williams8e8d5032015-09-22 21:59:41 -05006
7# Disable various algorithms.
Ed Tanouse5217202018-09-07 10:18:44 -07008EXTRA_OECONF_append_class-target = " no-idea no-md2 no-mdc2 no-rc5 no-md4 \
Ed Tanous469631b2018-12-16 17:36:07 -08009 no-rmd160 no-whirlpool no-camellia \
Patrick Williams8e8d5032015-09-22 21:59:41 -050010 no-rc2 no-rc4 no-bf no-cast no-seed no-gost "
Patrick Williamsc1fdc182016-05-26 18:03:12 -050011
12do_configure_append() {
13 oe_runmake depend
14}
William A. Kennington III53b55e62019-01-14 19:16:40 -080015
16# We don't want to depend on perl in our image
17RDEPENDS_${PN}-bin_remove = "perl"
18FILES_${PN}-misc_append = " ${bindir}/c_rehash"