blob: 23b95a12485d19378151e62a2af6fb2d57f69171 [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# Disable SSL (keep TLS only).
Patrick Williams12fc9392021-08-06 09:16:53 -05004EXTRA_OECONF:append:class-target = " no-ssl2 no-ssl3 "
Patrick Williams26ece152015-09-22 21:59:41 -05005# Disable various algorithms.
Ed Tanous4f5f5de2022-02-01 16:12:52 -08006EXTRA_OECONF:append:class-target = " \
7 no-rmd160 \
8 no-whirlpool \
9 no-rc2 \
10 no-rc4 \
11 no-bf \
12 no-cast \
13 no-gost \
14"
15
Patrick Williams12fc9392021-08-06 09:16:53 -050016do_configure:append() {
Patrick Williams3dbac6d2016-05-26 18:03:12 -050017 oe_runmake depend
18}
William A. Kennington III2db4f502019-01-14 19:16:40 -080019
20# We don't want to depend on perl in our image
Patrick Williams12fc9392021-08-06 09:16:53 -050021RDEPENDS:${PN}-bin:remove = "perl"
Ed Tanous9936f862022-09-19 09:13:20 -070022
Patrick Williams12fc9392021-08-06 09:16:53 -050023FILES:${PN}-misc:append = " ${bindir}/c_rehash"