Move filesystem drivers into their separate directories
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 38s
Build documentation / build-and-deploy (push) Successful in 24s

This commit is contained in:
2026-04-18 18:49:13 +02:00
parent da1ec634f7
commit 24332da967
21 changed files with 603 additions and 608 deletions

View File

@@ -1,15 +1,9 @@
include fs/fatfs/src.mk
include fs/tarfs/src.mk
include fs/iso9660fs/src.mk
c += fs/vfs.c \
fs/tarfs.c \
fs/path.c \
fs/fat1.c \
fs/fatfs.c \
fs/lib9660.c \
fs/iso9660fs.c
fs/path.c
o += fs/vfs.o \
fs/tarfs.o \
fs/path.o \
fs/fat1.o \
fs/fatfs.o \
fs/lib9660.o \
fs/iso9660fs.o
fs/path.o