From 30066345aa29bbd773f984448597d40143f7ff80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Stehl=C3=A9?= Date: Wed, 29 Jan 2025 13:54:08 +0100 Subject: [PATCH] package/optee-client: add option to use same version as optee-os MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We can select a custom official version for the optee-os package; add an option to select the same version for optee-client, to easily keep them synchronized. Signed-off-by: Vincent Stehlé Cc: Étienne Carrière Signed-off-by: Julien Olivain --- package/optee-client/Config.in | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/package/optee-client/Config.in b/package/optee-client/Config.in index 738d43f837..efed800a87 100644 --- a/package/optee-client/Config.in +++ b/package/optee-client/Config.in @@ -19,10 +19,16 @@ if BR2_PACKAGE_OPTEE_CLIENT choice prompt "optee-client version" + default BR2_PACKAGE_OPTEE_CLIENT_AS_OS \ + if BR2_TARGET_OPTEE_OS_CUSTOM_VERSION default BR2_PACKAGE_OPTEE_CLIENT_LATEST help Select the version of optee-client you want to use +config BR2_PACKAGE_OPTEE_CLIENT_AS_OS + bool "Same as optee-os being built" + depends on BR2_TARGET_OPTEE_OS_CUSTOM_VERSION + config BR2_PACKAGE_OPTEE_CLIENT_LATEST bool "4.3.0" help @@ -52,6 +58,8 @@ endif config BR2_PACKAGE_OPTEE_CLIENT_VERSION string + default BR2_TARGET_OPTEE_OS_CUSTOM_VERSION_VALUE \ + if BR2_PACKAGE_OPTEE_CLIENT_AS_OS default "4.3.0" if BR2_PACKAGE_OPTEE_CLIENT_LATEST default "custom" if BR2_PACKAGE_OPTEE_CLIENT_CUSTOM_TARBALL