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	help
14	  Enables command that allows to erase storage partition.
15
16module = MCUMGR_GRP_ZBASIC
17module-str = mcumgr_grp_zbasic
18source "subsys/logging/Kconfig.template.log_config"
19
20endif
21