aboutsummaryrefslogtreecommitdiff
path: root/sys/include
diff options
context:
space:
mode:
authorIan Moffett <ian@osmora.org>2024-03-01 20:29:45 -0500
committerIan Moffett <ian@osmora.org>2024-03-01 20:41:36 -0500
commit87207136edcc91c08b7e27cb052765795e2f7c90 (patch)
tree34e25a66557e7901398a24828fc343706f619e32 /sys/include
parentdaa727a83fff0160cbd9e13fd4d831fb869ea8a8 (diff)
kernel: initramfs: Add support with VFS + USTAR
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include')
-rw-r--r--sys/include/fs/initramfs.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/include/fs/initramfs.h b/sys/include/fs/initramfs.h
index c507e3d..223e962 100644
--- a/sys/include/fs/initramfs.h
+++ b/sys/include/fs/initramfs.h
@@ -31,8 +31,10 @@
#define _FS_INITRAMFS_H_
#include <sys/mount.h>
+#include <sys/vnode.h>
extern struct vfsops g_initramfs_ops;
+extern struct vops g_initramfs_vops;
const char *initramfs_open(const char *path);