You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a previous issue I asked about adding openssl to the 'Normal World' environment and was pointed to the common.mk file in the build directory. From my investigations of common.mk it looks as if openssl should be part of the build.
BR2_PER_PACKAGE_DIRECTORIES ?= y
BR2_PACKAGE_LIBOPENSSL ?= y
BR2_PACKAGE_MMC_UTILS ?= y
BR2_PACKAGE_OPENSSL ?= y
BR2_PACKAGE_OPTEE_BENCHMARK_EXT ?= $(CFG_TEE_BENCHMARK)
BR2_PACKAGE_OPTEE_BENCHMARK_EXT_SITE ?= $(BENCHMARK_APP_PATH)
BR2_PACKAGE_OPTEE_CLIENT_EXT_SITE ?= $(OPTEE_CLIENT_PATH)
BR2_PACKAGE_OPTEE_EXAMPLES_EXT ?= y
BR2_PACKAGE_OPTEE_EXAMPLES_EXT_CROSS_COMPILE ?= $(CROSS_COMPILE_S_USER)
BR2_PACKAGE_OPTEE_EXAMPLES_EXT_SDK ?= $(OPTEE_OS_TA_DEV_KIT_DIR)
BR2_PACKAGE_OPTEE_EXAMPLES_EXT_SITE ?= $(OPTEE_EXAMPLES_PATH)
In examining the 'Normal World' this is what i find
Hi, please ask the question here (build) or here (optee_os), since this is about code in those projects. My docker files, is solely about setting up the official environment in a Docker environment.
In a previous issue I asked about adding
openssl
to the 'Normal World' environment and was pointed to thecommon.mk
file in thebuild
directory. From my investigations ofcommon.mk
it looks as ifopenssl
should be part of the build.In examining the 'Normal World' this is what i find
# find | grep -i openssl ./etc/ssl/openssl.cnf ./etc/ssl/openssl.cnf.dist
Other 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 scripthere.
After this i lose my way in the make started by the python script and on that follows below it.
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.
Is there something simple i am missing?
The text was updated successfully, but these errors were encountered: