rt-thread-official/bsp/simulator/applications/mnt.c

69 lines
1.8 KiB
C
Raw Normal View History

2017-10-20 13:26:47 +08:00
/*
* Copyright (c) 2006-2021, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
2017-10-20 13:26:47 +08:00
*
* Change Logs:
* Date Author Notes
* 2017-04-03 Urey the first version
2022-06-02 00:44:06 +08:00
* 2022-06-01 Meco Man improve the init process
2017-10-20 13:26:47 +08:00
*/
#include <rtthread.h>
#include <rtdevice.h>
#define DBG_TAG "FileSystem"
#define DBG_LVL DBG_INFO
#include <rtdbg.h>
2017-10-20 13:26:47 +08:00
#ifdef RT_USING_DFS
#include <dfs_fs.h>
static int mnt_init(void)
2017-10-20 13:26:47 +08:00
{
#ifdef RT_USING_DFS_WINSHAREDIR
2018-01-19 11:42:05 +08:00
extern int dfs_win32_init(void);
extern rt_err_t rt_win_sharedir_init(const char *name);
2017-10-20 13:26:47 +08:00
dfs_win32_init();
rt_win_sharedir_init("wshare");
if (dfs_mount("wshare", "/", "wdir", 0, 0) == 0)
{
LOG_I("[wshare] File System on root ('wshare') initialized!");
2017-10-20 13:26:47 +08:00
}
else
{
LOG_E("[wshare] File System on root ('wshare') initialization failed!");
2017-10-20 13:26:47 +08:00
}
if (dfs_mount("sd0", "/sd", "elm", 0, 0) == 0)
2022-06-02 00:44:06 +08:00
#else
if (dfs_mount("sd0", "/", "elm", 0, 0) == 0)
#endif /* RT_USING_DFS_WINSHAREDIR */
2017-10-20 13:26:47 +08:00
{
LOG_I("[sd0] File System on SD ('sd0') initialized!");
2017-10-20 13:26:47 +08:00
}
else
{
LOG_W("[sd0] File System on SD ('sd0') initialization failed!");
LOG_W("[sd0] Try to format and re-mount...");
if (dfs_mkfs("elm", "sd0") == 0)
{
2022-06-02 00:44:06 +08:00
#ifdef RT_USING_DFS_WINSHAREDIR
if (dfs_mount("sd0", "/sd", "elm", 0, 0) == 0)
2022-06-02 00:44:06 +08:00
#else
if (dfs_mount("sd0", "/", "elm", 0, 0) == 0)
#endif /* RT_USING_DFS_WINSHAREDIR */
{
LOG_I("[sd0] File System on SD ('sd0') initialized!");
return 0;
}
}
LOG_E("[sd0] File System on SD ('sd0') initialization failed!");
2017-10-20 13:26:47 +08:00
}
return 0;
2017-10-20 13:26:47 +08:00
}
INIT_ENV_EXPORT(mnt_init);
2022-06-02 00:44:06 +08:00
#endif /* RT_USING_DFS */