package/optee-test: add option to use same version as optee-os

We can select a custom official version for the optee-os package; add an
option to select the same version for optee-test, to easily keep them
synchronized.

Break one unrelated long line in the mean time to keep formatting
harmonious.

Signed-off-by: Vincent Stehlé <vincent.stehle@arm.com>
Cc: Étienne Carrière <etienne.carriere@foss.st.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Vincent Stehlé
2025-01-29 13:54:10 +01:00
committed by Julien Olivain
parent 843cf79ff1
commit a92b74c20c

View File

@@ -36,10 +36,17 @@ if BR2_PACKAGE_OPTEE_TEST
choice
prompt "optee-test version"
default BR2_PACKAGE_OPTEE_TEST_LATEST if BR2_PACKAGE_HOST_RUSTC_ARCH_SUPPORTS
default BR2_PACKAGE_OPTEE_TEST_AS_OS \
if BR2_TARGET_OPTEE_OS_CUSTOM_VERSION
default BR2_PACKAGE_OPTEE_TEST_LATEST \
if BR2_PACKAGE_HOST_RUSTC_ARCH_SUPPORTS
help
Select the version of optee-test you want to use
config BR2_PACKAGE_OPTEE_TEST_AS_OS
bool "Same as optee-os being built"
depends on BR2_TARGET_OPTEE_OS_CUSTOM_VERSION
config BR2_PACKAGE_OPTEE_TEST_LATEST
bool "4.3.0"
help
@@ -68,6 +75,8 @@ endif
config BR2_PACKAGE_OPTEE_TEST_VERSION
string
default BR2_TARGET_OPTEE_OS_CUSTOM_VERSION_VALUE \
if BR2_PACKAGE_OPTEE_TEST_AS_OS
default "4.3.0" if BR2_PACKAGE_OPTEE_TEST_LATEST
default "custom" if BR2_PACKAGE_OPTEE_TEST_CUSTOM_TARBALL