1# Copyright (c) 2022 Arm Limited (or its affiliates). All rights reserved.
2# SPDX-License-Identifier: Apache-2.0
3
4config ZEPHYR_TRUSTED_FIRMWARE_A_MODULE
5	bool
6
7menuconfig BUILD_WITH_TFA
8	bool "Build with TF-A as the Secure Execution Environment"
9	help
10	  When enabled, this option instructs the Zephyr build process to
11	  additionally generate a TF-A image for the Secure Execution
12	  environment, along with the Zephyr image. The Zephyr image
13	  itself is to be executed in the Non-Secure Processing Environment.
14
15if BUILD_WITH_TFA
16
17config TFA_MAKE_BUILD_TYPE_DEBUG
18	bool "Debug build"
19	help
20	  When enabled, the build type of TF-A would be debug.
21
22endif # BUILD_WITH_TFA
23