Add create_file syscall, CE mkfile command, FatFS formatting fixes
All checks were successful
Build documentation / build-and-deploy (push) Successful in 4m16s

This commit is contained in:
2026-03-01 01:52:09 +01:00
parent eb55a6de21
commit abd85744cc
13 changed files with 133 additions and 18 deletions

View File

@@ -10,7 +10,7 @@
struct vfs_volume;
int fatfs_mount (struct vfs_volume* volume);
int fatfs_mount (struct vfs_volume* volume, bool format);
int fatfs16_format (struct vfs_volume* volume);
@@ -27,4 +27,6 @@ int fatfs_write_file (struct vfs_volume* volume, const char* path, uint8_t* buff
int fatfs_read_dir_entry (struct vfs_volume* volume, const char* path, struct dir_entry* entry,
size_t entry_num);
int fatfs_create_file (struct vfs_volume* volume, const char* path);
#endif // _KERNEL_FS_FATFS_H