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