1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 04:47:34 +00:00

Kernel: Move FS-related files into Kernel/FileSystem/

This commit is contained in:
Andreas Kling 2019-04-03 12:25:24 +02:00
parent f6d0e1052b
commit f9864940eb
28 changed files with 27 additions and 26 deletions

View file

@ -15,7 +15,6 @@ KERNEL_OBJS = \
Console.o \
IRQHandler.o \
kprintf.o \
ProcFS.o \
RTC.o \
TTY.o \
PTYMultiplexer.o \
@ -28,7 +27,7 @@ KERNEL_OBJS = \
ELFImage.o \
ELFLoader.o \
KSyms.o \
DevPtsFS.o \
FileSystem/DevPtsFS.o \
BXVGADevice.o \
PCI.o \
PS2MouseDevice.o \
@ -44,6 +43,7 @@ KERNEL_OBJS = \
Net/NetworkTask.o
VFS_OBJS = \
FileSystem/ProcFS.o \
DiskDevice.o \
Device.o \
CharacterDevice.o \
@ -52,12 +52,12 @@ VFS_OBJS = \
FullDevice.o \
ZeroDevice.o \
RandomDevice.o \
FileSystem.o \
DiskBackedFileSystem.o \
Ext2FileSystem.o \
VirtualFileSystem.o \
FileSystem/FileSystem.o \
FileSystem/DiskBackedFileSystem.o \
FileSystem/Ext2FileSystem.o \
FileSystem/VirtualFileSystem.o \
FileDescriptor.o \
SyntheticFileSystem.o
FileSystem/SyntheticFileSystem.o
AK_OBJS = \
../AK/String.o \