aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/vfs_init.c
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-07-12 00:07:22 -0400
committerIan Moffett <ian@osmora.org>2024-07-12 00:07:22 -0400
commitd117265f1e2b465c29c919a7ad594232d645cf76 (patch)
tree2f758801628660f19783c5a3b31e3cbb2dec352a /sys/kern/vfs_init.c
parente93f80c60a900b747792cda7176c59521401821b (diff)
kernel: Add support for devfs
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/kern/vfs_init.c')
-rw-r--r--sys/kern/vfs_init.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/kern/vfs_init.c b/sys/kern/vfs_init.c
index aafbc00..ab18d09 100644
--- a/sys/kern/vfs_init.c
+++ b/sys/kern/vfs_init.c
@@ -36,6 +36,7 @@
struct vnode *g_root_vnode = NULL;
static struct fs_info fs_list[] = {
{MOUNT_RAMFS, &g_initramfs_vfsops, 0, 0},
+ {MOUNT_DEVFS, &g_devfs_vfsops, 0, 0}
};
void