boards/nucleo-h743zi: register TMPFS

register TMPFS for nucleo-h743zi

Signed-off-by: raiden00pl <raiden00@railab.me>
This commit is contained in:
raiden00pl
2025-11-12 09:37:51 +01:00
committed by simbit18
parent 22bc630d9f
commit 3e30a93d1b
@@ -274,6 +274,17 @@ int stm32_bringup(void)
}
#endif /* CONFIG_FS_PROCFS */
#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
/* Mount the romfs partition */