From 9056cabd8319c53ccba6328c830a2a2505d61f2d Mon Sep 17 00:00:00 2001 From: Gustavo Henrique Nihei Date: Fri, 22 Oct 2021 12:06:17 -0300 Subject: [PATCH] boards/esp32: Select MTD_SMART if SmartFS is selected for SPI Flash MTD If MTD_SMART is not selected for build, it will result in a build error. Signed-off-by: Gustavo Henrique Nihei --- boards/xtensa/esp32/common/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/boards/xtensa/esp32/common/Kconfig b/boards/xtensa/esp32/common/Kconfig index 3051690f142..72b79135e48 100644 --- a/boards/xtensa/esp32/common/Kconfig +++ b/boards/xtensa/esp32/common/Kconfig @@ -31,6 +31,7 @@ choice ESP32_SPIFLASH_FS config ESP32_SPIFLASH_SMARTFS bool "SmartFS" select FS_SMARTFS + select MTD_SMART config ESP32_SPIFLASH_NXFFS bool "NXFFS"