summaryrefslogtreecommitdiffstats
path: root/sw/z80/kernel/include/fs/mount.h
diff options
context:
space:
mode:
Diffstat (limited to 'sw/z80/kernel/include/fs/mount.h')
-rw-r--r--sw/z80/kernel/include/fs/mount.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/sw/z80/kernel/include/fs/mount.h b/sw/z80/kernel/include/fs/mount.h
new file mode 100644
index 0000000..a0edd5d
--- /dev/null
+++ b/sw/z80/kernel/include/fs/mount.h
@@ -0,0 +1,15 @@
+#ifndef MOUNT_H
+#define MOUNT_H
+
+#include "fs.h"
+
+#define FS_MOUNT_LIMIT 16
+
+struct fs_mount_point
+{
+ struct fs_inumber inode; // dir mounted
+ uint serial_port :4;
+ struct fs_superblock superblock; // block informations
+}
+
+#endif