mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-17 03:33:30 +08:00
22 lines
373 B
C
22 lines
373 B
C
#include <rtthread.h>
|
|
|
|
#ifdef RT_USING_DFS
|
|
#include <dfs_fs.h>
|
|
#include "dfs_romfs.h"
|
|
|
|
int mnt_init(void)
|
|
{
|
|
if (dfs_mount(RT_NULL, "/", "rom", 0, &(romfs_root)) == 0)
|
|
{
|
|
rt_kprintf("ROM file system initializated!\n");
|
|
}
|
|
else
|
|
{
|
|
rt_kprintf("ROM file system initializate failed!\n");
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
INIT_ENV_EXPORT(mnt_init);
|
|
#endif
|