diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-27 19:06:14 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-27 19:06:14 -0400 |
commit | eb829b70db46ad86a1c85740f5ca02b7ba29ce4f (patch) | |
tree | 7e2241ae22991057ddf5c5470dcff1ce1f215658 /share/misc/tmpfs | |
parent | bbd861c0cd4c26e2699392fec3ae0ec7df8ab145 (diff) |
kernel: Add initial support for tmpfs
Introduce the initial support for tmpfs, a readable and writable in-memory
filesystem.
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'share/misc/tmpfs')
-rw-r--r-- | share/misc/tmpfs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/share/misc/tmpfs b/share/misc/tmpfs new file mode 100644 index 0000000..38eac22 --- /dev/null +++ b/share/misc/tmpfs @@ -0,0 +1,15 @@ +---------------------------------------------------- +| Readable + writable in-memory filesystem (tmpfs) | ++--------------------------------------------------+ +| Author: Ian Marco Moffett | ++--------------------------------------------------+ + +------------------------------------------------------------------------------ + + [d] /tmp/ -> [next] -> foo.txt -> [next] -> bar.txt + \ + +> /tmp/noises/ -> [next] -> mrow.txt -> [next] -> squeak.txt + \ + +> /tmp/noises1/ -> [next] -> bark.bin -> [next] -> wrff.txt + +------------------------------------------------------------------------------ |