| 150 | INIT_ENV_EXPORT(rootfs_mnt_init); |
| 151 | |
| 152 | static int fstab_mnt_init(void) |
| 153 | { |
| 154 | mkdir("/mnt", 0755); |
| 155 | |
| 156 | #ifdef RT_USING_FINSH |
| 157 | /* Try mount by table */ |
| 158 | msh_exec_script("fstab.sh", 16); |
| 159 | #endif |
| 160 | |
| 161 | #ifdef RT_USING_DFS_PROCFS |
| 162 | mkdir("/proc", 0755); |
| 163 | dfs_mount(RT_NULL, "/proc", "procfs", 0, RT_NULL); |
| 164 | #endif |
| 165 | |
| 166 | LOG_I("File system initialization done"); |
| 167 | |
| 168 | return 0; |
| 169 | } |
| 170 | INIT_FS_EXPORT(fstab_mnt_init); |
nothing calls this directly
no test coverage detected