1# Copyright (c) 2019 Peter Bigot Consulting, LLC
2# SPDX-License-Identifier: Apache-2.0
3
4mainmenu "littlefs sample"
5
6config APP_WIPE_STORAGE
7	bool "Option to clear the flash area before mounting"
8	help
9	  Use this to force an existing file system to be created.
10
11choice
12	prompt "Storage backend type used by the application"
13	default APP_LITTLEFS_STORAGE_FLASH
14	help
15	  Specify the type of storage backend.
16
17config APP_LITTLEFS_STORAGE_FLASH
18	bool "Use flash memory backend"
19
20config APP_LITTLEFS_STORAGE_BLK_SDMMC
21	bool "Use block device (e.g. SD MMC) backend"
22endchoice
23
24source "Kconfig.zephyr"
25