58 lines
1.1 KiB
C
58 lines
1.1 KiB
C
|
/*
|
||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
*/
|
||
|
|
||
|
#include <rtthread.h>
|
||
|
|
||
|
#ifdef RT_USING_DFS
|
||
|
|
||
|
#include <dfs_fs.h>
|
||
|
#include <dfs_romfs.h>
|
||
|
|
||
|
int mnt_init(void)
|
||
|
{
|
||
|
#ifdef RT_USING_SDIO2
|
||
|
rt_thread_mdelay(500);
|
||
|
|
||
|
int part_id = 0;
|
||
|
if (dfs_mount("emmc0", "/", "elm", 0, (void *)part_id) != 0)
|
||
|
{
|
||
|
rt_kprintf("Dir / emmc mount failed!\n");
|
||
|
return -1;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
rt_kprintf("emmc file system initialization done!\n");
|
||
|
}
|
||
|
|
||
|
part_id = 0;
|
||
|
if (dfs_mount("sd0", "/mnt/sd0", "elm", 0, (void *)part_id) != 0)
|
||
|
{
|
||
|
rt_kprintf("Dir /mnt/sd0 mount failed!\n");
|
||
|
return -1;
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
rt_kprintf("sd0 file system initialization done!\n");
|
||
|
}
|
||
|
#else
|
||
|
rt_thread_mdelay(500);
|
||
|
if (dfs_mount(NULL, "/", "rom", 0, &romfs_root) != 0)
|
||
|
{
|
||
|
rt_kprintf("Dir / mount failed!\n");
|
||
|
return -1;
|
||
|
}
|
||
|
|
||
|
rt_kprintf("file system initialization done!\n");
|
||
|
#endif
|
||
|
return 0;
|
||
|
}
|
||
|
INIT_ENV_EXPORT(mnt_init);
|
||
|
|
||
|
#endif
|