diff options
author | Ian Moffett <ian@osmora.org> | 2024-07-12 00:07:22 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-07-12 00:07:22 -0400 |
commit | d117265f1e2b465c29c919a7ad594232d645cf76 (patch) | |
tree | 2f758801628660f19783c5a3b31e3cbb2dec352a /sys/kern/vfs_init.c | |
parent | e93f80c60a900b747792cda7176c59521401821b (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.c | 1 |
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 |