| 311 | } |
| 312 | |
| 313 | void prepareFileSystems() { |
| 314 | file_system_for_each(nullptr, [](auto* fs, void* context) { |
| 315 | if (!file_system_is_mounted(fs)) return true; |
| 316 | char path[128]; |
| 317 | if (file_system_get_path(fs, path, sizeof(path)) != ERROR_NONE) return true; |
| 318 | if (std::string(path) == file::MOUNT_POINT_SYSTEM) return true; |
| 319 | createTempDirectory(path); |
| 320 | return true; |
| 321 | }); |
| 322 | } |
| 323 | |
| 324 | void registerApps() { |
| 325 | registerInternalApps(); |
no test coverage detected