Displaying 5 results from an estimated 5 matches for "iso9660_sb".
2006 Sep 13
0
[patch] add iso9660 detection to fstype
The attached patch adds iso9660 detection support to fstype.
Signed-off-by: David H?rdeman <david at hardeman.nu>
--
fstype.c | 17 +++++++++++++++++
iso9660_sb.h | 24 ++++++++++++++++++++++++
2 files changed, 41 insertions(+)
-------------- next part --------------
diff -Nru klibc/usr/kinit/fstype/fstype.c klibc-hack/usr/kinit/fstype/fstype.c
--- klibc/usr/kinit/fstype/fstype.c 2006-09-14 00:19:41.000000000 +0200
+++ klibc-hack/usr/kinit/fstype/fstype...
2010 Apr 25
2
[git pull] small fixes, sh4, getruage() README's
...Needed by romfs_fs.h */
-#include "romfs_fs.h"
+#include "btrfs.h"
#include "cramfs_fs.h"
-#include "minix_fs.h"
#include "ext2_fs.h"
#include "ext3_fs.h"
-#include "xfs_sb.h"
+#include "gfs2_fs.h"
+#include "iso9660_sb.h"
#include "luks_fs.h"
#include "lvm2_sb.h"
-#include "iso9660_sb.h"
-#include "squashfs_fs.h"
-#include "gfs2_fs.h"
-#include "ocfs2_fs.h"
+#include "minix_fs.h"
#include "nilfs_fs.h"
-#include "btrfs.h&q...
2007 Aug 15
0
[git patch] fstype support + minor stuff
...r now.
Signed-off-by: maximilian attems <max at stro.at>
diff --git a/usr/kinit/fstype/fstype.c b/usr/kinit/fstype/fstype.c
index 3465676..197a259 100644
--- a/usr/kinit/fstype/fstype.c
+++ b/usr/kinit/fstype/fstype.c
@@ -31,6 +31,7 @@
#include "lvm2_sb.h"
#include "iso9660_sb.h"
#include "squashfs_fs.h"
+#include "gfs2_fs.h"
/*
* Slightly cleaned up version of jfs_superblock to
@@ -297,6 +298,20 @@ static int squashfs_image(const void *buf, unsigned long long *blocks)
return 0;
}
+static int gfs2_image(const void *buf, unsigned long l...
2010 Jul 07
0
[git pull v2] x86_32, sh4, getrusage()
...Needed by romfs_fs.h */
-#include "romfs_fs.h"
+#include "btrfs.h"
#include "cramfs_fs.h"
-#include "minix_fs.h"
#include "ext2_fs.h"
#include "ext3_fs.h"
-#include "xfs_sb.h"
+#include "gfs2_fs.h"
+#include "iso9660_sb.h"
#include "luks_fs.h"
#include "lvm2_sb.h"
-#include "iso9660_sb.h"
-#include "squashfs_fs.h"
-#include "gfs2_fs.h"
-#include "ocfs2_fs.h"
+#include "minix_fs.h"
#include "nilfs_fs.h"
-#include "btrfs.h&q...
2007 Aug 21
1
[git patch] dmesg + fstype ocfs2
...g1-ocfs2
FSTYPE=ocfs2
FSSIZE=0
Signed-off-by: maximilian attems <max at stro.at>
diff --git a/usr/kinit/fstype/fstype.c b/usr/kinit/fstype/fstype.c
index 197a259..2f219e6 100644
--- a/usr/kinit/fstype/fstype.c
+++ b/usr/kinit/fstype/fstype.c
@@ -32,6 +32,7 @@
#include "iso9660_sb.h"
#include "squashfs_fs.h"
#include "gfs2_fs.h"
+#include "ocfs2_fs.h"
/*
* Slightly cleaned up version of jfs_superblock to
@@ -312,6 +313,19 @@ static int gfs2_image(const void *buf, unsigned long long *bytes)
return 0;
}
+static int ocfs2_image(con...