stm32f4disco: Add support to mount /tmp

This commit is contained in:
Alan Carvalho de Assis
2023-01-22 09:34:41 -03:00
committed by Xiang Xiao
parent bd6a0b08db
commit 1c6dd7030f
@@ -515,6 +515,17 @@ int stm32_bringup(void)
}
#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_STM32_ROMFS
ret = stm32_romfs_initialize();
if (ret < 0)