boards/esp32-wrover-kit: Mount tmpfs on bring up

This commit is contained in:
Gustavo Henrique Nihei
2021-03-15 15:53:12 -03:00
committed by Xiang Xiao
parent 31816d2726
commit 4cde8dab5a
@@ -143,6 +143,17 @@ int esp32_bringup(void)
} }
#endif #endif
#ifdef CONFIG_FS_TMPFS
/* Mount the tmpfs file system */
ret = nx_mount(NULL, CONFIG_LIBC_TMPDIR, "tmpfs", 0, NULL);
if (ret < 0)
{
syslog(LOG_ERR, "ERROR: Failed to mount tmpfs at %s: %d\n",
CONFIG_LIBC_TMPDIR, ret);
}
#endif
#ifdef CONFIG_MMCSD #ifdef CONFIG_MMCSD
ret = esp32_mmcsd_initialize(0); ret = esp32_mmcsd_initialize(0);
if (ret < 0) if (ret < 0)