1# Copyright (c) 2016 Intel Corporation 2# SPDX-License-Identifier: Apache-2.0 3 4config DISK_DRIVER_RAM 5 bool "RAM Disk" 6 depends on DT_HAS_ZEPHYR_RAM_DISK_ENABLED 7 default y 8 help 9 RAM buffer used to emulate storage disk. 10 This option can be used to test the file 11 system. 12 13if DISK_DRIVER_RAM 14 15module = RAMDISK 16module-str = ramdisk 17source "subsys/logging/Kconfig.template.log_config" 18 19endif # DISK_DRIVER_RAM 20