blob: 0bdb47b9458ee58a9904348a5ec9832215a73aee [file] [log] [blame]
Patrick Williams26ece152015-09-22 21:59:41 -05001# General config settings.
Patrick Williams12fc9392021-08-06 09:16:53 -05002EXTRA_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).
Patrick Williams12fc9392021-08-06 09:16:53 -05005EXTRA_OECONF:append:class-target = " no-ssl2 no-ssl3 "
Patrick Williams26ece152015-09-22 21:59:41 -05006
7# Disable various algorithms.
Patrick Williams12fc9392021-08-06 09:16:53 -05008EXTRA_OECONF:append:class-target = " no-md4 no-rmd160 no-whirlpool \
Andrew Geisslerf133cfa2021-02-22 08:12:15 -06009 no-rc2 no-rc4 no-bf no-cast no-gost "
Patrick Williams12fc9392021-08-06 09:16:53 -050010do_configure:append() {
Patrick Williams3dbac6d2016-05-26 18:03:12 -050011 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
Patrick Williams12fc9392021-08-06 09:16:53 -050015RDEPENDS:${PN}-bin:remove = "perl"
16FILES:${PN}-misc:append = " ${bindir}/c_rehash"