Closed schnorea closed 11 months ago
It looks like you need to set BR2_PACKAGE_LIBOPENSSL_BIN=y
to get the openssl binary.
Thank you that did it! How could I have discover this myself in the future for other libraries/utilities? Does make menuconfig
highlight these dependencies?
Openssl doesn't seem to get built on unmodified build.
Problem
After running
make qemu.mk
and successfully getting Normal and Secure World xterm windows. The Normal World doesn't seem to haveopenssl
in fact all that can be found ofopenssl
isAll other operations of the environment (as the tutorial in the docs mention) work as advertised.
Desired State
My ultimate goal is to have optee as the keystore for openssl via pkcs11 to workout how this might be used for code signing, etc. For this I will need at least to be able to access openssl.
Context
This build environment is sourced from
optee/build
repo directly via this script (along with other elements)Make target: qemu.mk Build environment: Docker container. - Build qemu.mk version of systems using this docker file https://github.com/jbech-linaro/docker_optee
Attempted Debug
common.mk
has openssl enabledOther elements from the config show up as would be expected but not
openssl
.In looking through the build of the rootfs.cpio.gz It looks like that config makes its way to the
out-br/defconfig
file via the python script here.After this I lose my way in the make started by the python script and the one that follows below it.
Help
Any guidance or suggestion on why this shouldn't work and how to make it work welcome.