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

Kernel: Add TmpFS

This is an FS that stores all of its contents directly in memory.
It's mounted on /tmp by default.
This commit is contained in:
Sergey Bugaev 2019-08-15 18:16:45 +03:00 committed by Andreas Kling
parent d92ba85689
commit b4c607a8da
4 changed files with 429 additions and 0 deletions

View file

@ -65,6 +65,7 @@ KERNEL_OBJS = \
VFS_OBJS = \
FileSystem/ProcFS.o \
FileSystem/TmpFS.o \
FileSystem/Inode.o \
Devices/DiskDevice.o \
Devices/Device.o \