diff options
Diffstat (limited to 'sys/kern/vfs_init.c')
-rw-r--r-- | sys/kern/vfs_init.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/kern/vfs_init.c b/sys/kern/vfs_init.c index fa20af3..6754b1f 100644 --- a/sys/kern/vfs_init.c +++ b/sys/kern/vfs_init.c @@ -34,6 +34,7 @@ #include <sys/vnode.h> #include <fs/initramfs.h> #include <fs/devfs.h> +#include <fs/procfs.h> #include <assert.h> #include <string.h> @@ -43,10 +44,12 @@ __KERNEL_META("$Hyra$: vfs.c, Ian Marco Moffett, " #define INITRAMFS_ID 0 #define DEVFS_ID 1 +#define PROCFS_ID 2 static struct fs_info filesystems[] = { [INITRAMFS_ID] = { "initramfs", &g_initramfs_ops, NULL}, - [DEVFS_ID] = { "dev", &g_devfs_ops, &g_devfs_vops } + [DEVFS_ID] = { "dev", &g_devfs_ops, &g_devfs_vops }, + [PROCFS_ID] = { "proc", &g_procfs_ops, &g_procfs_vops } }; struct vnode *g_root_vnode = NULL; |