1#------------------------------------------------------------------------------- 2# Copyright (c) 2022-2023, Arm Limited. All rights reserved. 3# 4# SPDX-License-Identifier: BSD-3-Clause 5# 6#------------------------------------------------------------------------------- 7 8menu "FWU component configs" 9 depends on TFM_PARTITION_FIRMWARE_UPDATE 10 11config TFM_FWU_BUF_SIZE 12 int "Size of the FWU internal data transfer buffer" 13 default TFM_CONFIG_FWU_MAX_WRITE_SIZE 14 help 15 Size of the FWU internal data transfer buffer 16 (defaults to TFM_CONFIG_FWU_MAX_WRITE_SIZE if not set) 17 18config FWU_STACK_SIZE 19 hex "Stack size" 20 default 0x600 21 22endmenu 23