1# Copyright (c) 2016 Intel Corporation
2# SPDX-License-Identifier: Apache-2.0
3
4config DISK_DRIVER_FLASH
5	bool "Flash"
6	depends on DT_HAS_ZEPHYR_FLASH_DISK_ENABLED
7	default y
8	select FLASH
9	select FLASH_MAP
10	help
11	  Flash device is used for the file system.
12
13if DISK_DRIVER_FLASH
14
15config FLASHDISK_VERIFY_PAGE_LAYOUT
16	bool "Verify flashdisk partition layout"
17	default y
18	help
19	  Enable runtime zephyr,flash-disk partition page layout constraints
20	  verification. Disable to reduce code size.
21
22module = FLASHDISK
23module-str = flashdisk
24source "subsys/logging/Kconfig.template.log_config"
25
26endif # DISK_DRIVER_FLASH
27