core: allow br2-external trees to provide opensl

Similar to toolchains and jpeg, we now offer a way for br2-external
trees to provide their openssl implementation, which gets included in
the openssl choice.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Vadim Kochan <vadim4j@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Yann E. MORIN 2019-07-29 22:20:02 +02:00 committed by Peter Korsgaard
parent 3b67e8e664
commit cfb929fbfa
2 changed files with 12 additions and 0 deletions

View File

@ -68,6 +68,9 @@ config BR2_PACKAGE_LIBRESSL_BIN
endif
# openssl from br2-external trees, if any
source "$BR2_BASE_DIR/.br2-external.in.openssl"
endchoice
config BR2_PACKAGE_HAS_OPENSSL

View File

@ -159,6 +159,7 @@ do_kconfig() {
menus
toolchains
jpeg
openssl
)
for br2 in "${items[@]}"; do
@ -214,6 +215,14 @@ do_kconfig() {
else
printf '# No jpeg from: %s\n\n' "${br2_desc}"
fi >>"${outputdir}/.br2-external.in.jpeg"
if [ -f "${br2_ext}/provides/openssl.in" ]; then
printf 'comment "openssl from: %s"\n' "${br2_desc}"
printf 'source "%s/provides/openssl.in"\n' "${br2_ext}"
printf '\n'
else
printf '# No openssl from: %s\n\n' "${br2_desc}"
fi >>"${outputdir}/.br2-external.in.openssl"
done
printf 'endmenu\n' >>"${outputdir}/.br2-external.in.menus"