:orphan: .. title:: TFM_BOARD .. option:: CONFIG_TFM_BOARD *(No prompt -- not directly user assignable.)* Type: ``string`` Help ==== The board name used for building TFM. Building with TFM requires that TFM has been ported to the given board/SoC. Defaults ======== - "nordic_nrf/nrf9160dk_nrf9160" if \ :option:`BOARD_NRF9160DK_NRF9160NS ` - "nordic_nrf/nrf5340dk_nrf5340_cpuapp" if \ :option:`BOARD_NRF5340DK_NRF5340_CPUAPPNS ` - "nordic_nrf/nrf5340pdk_nrf5340_cpuapp" if \ :option:`BOARD_NRF5340PDK_NRF5340_CPUAPPNS ` - "nxp/lpcxpresso55s69" if \ :option:`BOARD_LPCXPRESSO55S69_CPU0 ` - "mps2/an521" if \ :option:`BOARD_MPS2_AN521 ` - "stm/nucleo_l552ze_q" if \ :option:`BOARD_NUCLEO_L552ZE_Q ` - "musca_b1" if \ :option:`BOARD_MUSCA_B1 ` - "musca_s1" if \ :option:`BOARD_MUSCA_S1 ` Kconfig definition ================== .. highlight:: kconfig At ``modules/Kconfig.tfm:8`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:23`` → ``modules/Kconfig:32`` Menu path: (Top) → Modules .. parsed-literal:: config TFM_BOARD string default "nordic_nrf/nrf9160dk_nrf9160" if \ :option:`BOARD_NRF9160DK_NRF9160NS ` default "nordic_nrf/nrf5340dk_nrf5340_cpuapp" if \ :option:`BOARD_NRF5340DK_NRF5340_CPUAPPNS ` default "nordic_nrf/nrf5340pdk_nrf5340_cpuapp" if \ :option:`BOARD_NRF5340PDK_NRF5340_CPUAPPNS ` default "nxp/lpcxpresso55s69" if \ :option:`BOARD_LPCXPRESSO55S69_CPU0 ` default "mps2/an521" if \ :option:`BOARD_MPS2_AN521 ` default "stm/nucleo_l552ze_q" if \ :option:`BOARD_NUCLEO_L552ZE_Q ` default "musca_b1" if \ :option:`BOARD_MUSCA_B1 ` default "musca_s1" if \ :option:`BOARD_MUSCA_S1 ` help The board name used for building TFM. Building with TFM requires that TFM has been ported to the given board/SoC. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*