Skip to content
Snippets Groups Projects
Commit 28bd7b9d authored by Volodymyr Babchuk's avatar Volodymyr Babchuk Committed by Jérôme Forissier
Browse files

buildroot: add host-python-pycrypto dependency


Currently sign.py uses system python to sign TAs. Problem is
that buildroot can build own host-python. This python lacks
pycrypto, so sign.py fails.

This patch adds dependency on host-python-pycrypto, so buildroot
will always build python with needed module.

Signed-off-by: default avatarVolodymyr Babchuk <vlad.babchuk@gmail.com>
Reviewed-by: default avatarJens Wiklander <jens.wiklander@linaro.org>
parent 60b52bca
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@ OPTEE_EXAMPLES_SOURCE = local
OPTEE_EXAMPLES_SITE = $(BR2_PACKAGE_OPTEE_EXAMPLES_SITE)
OPTEE_EXAMPLES_SITE_METHOD = local
OPTEE_EXAMPLES_INSTALL_STAGING = YES
OPTEE_EXAMPLES_DEPENDENCIES = optee_client
OPTEE_EXAMPLES_DEPENDENCIES = optee_client host-python-pycrypto
OPTEE_EXAMPLES_SDK = $(BR2_PACKAGE_OPTEE_EXAMPLES_SDK)
OPTEE_EXAMPLES_CONF_OPTS = -DOPTEE_EXAMPLES_SDK=$(OPTEE_EXAMPLES_SDK)
......
......@@ -3,7 +3,7 @@ OPTEE_TEST_SOURCE = local
OPTEE_TEST_SITE = $(BR2_PACKAGE_OPTEE_TEST_SITE)
OPTEE_TEST_SITE_METHOD = local
OPTEE_TEST_INSTALL_STAGING = YES
OPTEE_TEST_DEPENDENCIES = optee_client openssl
OPTEE_TEST_DEPENDENCIES = optee_client openssl host-python-pycrypto
OPTEE_TEST_SDK = $(BR2_PACKAGE_OPTEE_TEST_SDK)
OPTEE_TEST_CONF_OPTS = -DOPTEE_TEST_SDK=$(OPTEE_TEST_SDK)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment