From 3e30a93d1b63aa16154b2d1f10c709631eb8aae7 Mon Sep 17 00:00:00 2001 From: raiden00pl Date: Wed, 12 Nov 2025 09:37:51 +0100 Subject: [PATCH] boards/nucleo-h743zi: register TMPFS register TMPFS for nucleo-h743zi Signed-off-by: raiden00pl --- boards/arm/stm32h7/nucleo-h743zi/src/stm32_bringup.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/boards/arm/stm32h7/nucleo-h743zi/src/stm32_bringup.c b/boards/arm/stm32h7/nucleo-h743zi/src/stm32_bringup.c index 4b7b95e16f9..3ec9cfe076b 100644 --- a/boards/arm/stm32h7/nucleo-h743zi/src/stm32_bringup.c +++ b/boards/arm/stm32h7/nucleo-h743zi/src/stm32_bringup.c @@ -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 */