From 6a10254915631404feb7c62948fe141feb2ca191 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sat, 26 Oct 2019 16:18:55 -0600 Subject: [PATCH] drivers/Kconfig: If CONFIG_DRVR_MKRD is selected, then we must also auto-select CONFIG_FS_READABLE. --- drivers/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/Kconfig b/drivers/Kconfig index 5657e291a94..06aff05727e 100644 --- a/drivers/Kconfig +++ b/drivers/Kconfig @@ -17,6 +17,7 @@ source drivers/loop/Kconfig config DRVR_MKRD bool "RAM disk wrapper (mkrd)" default n + select FS_READABLE select FS_WRITABLE ---help--- Build the mkrd() function which serves as a wrapper to simplify