From f31e63d79d2a7a4a6f66bacb891af8bd6be00ea5 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 17 Oct 2025 14:43:04 -0400 Subject: kern: fs: Add initial tmpfs implementation Supported VOPs as of now: - lookup() - create() - reclaim() Signed-off-by: Ian Moffett --- src/sys/os/vfs_init.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/sys/os/vfs_init.c') diff --git a/src/sys/os/vfs_init.c b/src/sys/os/vfs_init.c index 90747d6..1b6f815 100644 --- a/src/sys/os/vfs_init.c +++ b/src/sys/os/vfs_init.c @@ -40,6 +40,7 @@ static struct fs_info fstab[] = { { MOUNT_INITRD, &g_omar_vfsops, 0 }, { MOUNT_DEVFS, &g_devfs_vfsops, 0 }, + { MOUNT_TMPFS, &g_tmpfs_vfsops, 0 } }; /* -- cgit v1.2.3