#
# Copyright (c) 2024 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

menuconfig SSF_SUIT_SERVICE_ENABLED
	bool "SUIT Update service"
	depends on SDFW_SERVICES_ENABLED
	depends on SUIT_UTILS
	depends on SUIT_METADATA
	depends on ZCBOR_CANONICAL

if SSF_SUIT_SERVICE_ENABLED

config SSF_SUIT_SERVICE_ID
	hex
	default 0x53
	help
	  Service ID for SUIT Update service

config SSF_SUIT_SERVICE_VERSION
	int
	default 1
	help
	  Version of SUIT Update service

config SSF_SUIT_SERVICE_BUFFER_SIZE
	int "Buffer size for SUIT Update service handler"
	default 128

module = SSF_SUIT_SERVICE
module-str = SUIT Update service
source "${ZEPHYR_BASE}/subsys/logging/Kconfig.template.log_config"

endif # SSF_SUIT_SERVICE_ENABLED
