diff options
Diffstat (limited to 'src/sys/os')
-rw-r--r-- | src/sys/os/Makefile | 1 | ||||
-rw-r--r-- | src/sys/os/vfs_init.c | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/sys/os/Makefile b/src/sys/os/Makefile index de73afd..da481ec 100644 --- a/src/sys/os/Makefile +++ b/src/sys/os/Makefile @@ -12,6 +12,7 @@ CFILES += $(shell find ../lib -name "*.c") CFILES += $(shell find ../io -name "*.c") CFILES += $(shell find ../acpi -name "*.c") CFILES += $(shell find ../compat -name "*.c") +CFILES += $(shell find ../fs -name "*.c") DEPS = $(CFILES:.c=.d) OBJECTS = $(CFILES:%.c=%.o) diff --git a/src/sys/os/vfs_init.c b/src/sys/os/vfs_init.c index 92d7b94..80d8559 100644 --- a/src/sys/os/vfs_init.c +++ b/src/sys/os/vfs_init.c @@ -38,7 +38,8 @@ * The filesystem table */ static struct fs_info fstab[] = { - { MOUNT_INITRD, &g_omar_vfsops, 0 } + { MOUNT_INITRD, &g_omar_vfsops, 0 }, + { MOUNT_DEVFS, &g_devfs_vfops, 0 } }; /* |