1# Copyright (c) 2022 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig MCUMGR_GRP_ZBASIC
5	bool "Zephyr specific basic group of commands"
6	help
7	  Enables MCUmgr to processing of Zephyr specific groups.
8
9if MCUMGR_GRP_ZBASIC
10
11config MCUMGR_GRP_ZBASIC_STORAGE_ERASE
12	bool "Storage erase command"
13	depends on FLASH_MAP
14	help
15	  Enables command that allows to erase storage partition.
16
17module = MCUMGR_GRP_ZBASIC
18module-str = mcumgr_grp_zbasic
19source "subsys/logging/Kconfig.template.log_config"
20
21endif
22