blob: 0581dcd638543d842ac5c893ae36025238eea32c [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.
Ed Tanous4f5f5de2022-02-01 16:12:52 -08008EXTRA_OECONF:append:class-target = " \
9 no-rmd160 \
10 no-whirlpool \
11 no-rc2 \
12 no-rc4 \
13 no-bf \
14 no-cast \
15 no-gost \
16"
17
Patrick Williams12fc9392021-08-06 09:16:53 -050018do_configure:append() {
Patrick Williams3dbac6d2016-05-26 18:03:12 -050019 oe_runmake depend
20}
William A. Kennington III2db4f502019-01-14 19:16:40 -080021
22# We don't want to depend on perl in our image
Patrick Williams12fc9392021-08-06 09:16:53 -050023RDEPENDS:${PN}-bin:remove = "perl"
24FILES:${PN}-misc:append = " ${bindir}/c_rehash"