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