wm: teppich

Download patch

ref: 9c55d114695b5564d8abe09ca393974205f85211
parent: 6fd9e6e6e3becca66d74f3dc7590c6a0497e86fc
author: mkf <mkf@cloud9p.org>
date: Tue Nov 28 08:23:13 EST 2023

fs/fstab.h import

diff: cannot open b/fs//null: file does not exist: 'b/fs//null'
--- /dev/null
+++ b/fs/fstab.h
@@ -1,0 +1,11 @@
+#pragma once
+#include <vfs.h>
+
+fs_t* cmdfs_init(void);
+fs_t* rootfs_init(void);
+
+static mnt_t fstab[] =
+{
+	{"/", rootfs_init},
+	{"/cmd/", cmdfs_init},
+};