search for: squashfs_f

Displaying 8 results from an estimated 8 matches for "squashfs_f".

Did you mean: squashfs_fs
2007 Aug 15
0
[git patch] fstype support + minor stuff
...gitignore | 3 + usr/kinit/.gitignore | 3 + usr/kinit/fstype/ext3_fs.h | 4 + usr/kinit/fstype/fstype.c | 51 ++++++++++++++++++ usr/kinit/fstype/gfs2_fs.h | 56 ++++++++++++++++++++ usr/kinit/fstype/reiser4_fs.h | 2 usr/kinit/fstype/squashfs_fs.h | 41 ++++++++++++++ usr/klibc/.gitignore | 9 +++ usr/klibc/Kbuild | 109 ++++++++++++++++++++------------------- usr/klibc/socketcalls/.gitignore | 3 + usr/klibc/syscalls/.gitignore | 6 ++ 13 files changed, 254 insertions(+), 52 deletions(-) leav...
2007 Dec 10
1
[git patch] m-i-t support, ipconfig fix
hello hpa, please pull latest git pull git://git.debian.org/~maks/klibc.git maks forgot to ask to keep git port open for our boxes at university, thus moved my tree over too the alioth box. for the changes maximilian attems (4): [klibc] klibc/socketcalls/.gitignore addition [klibc] elf.h add support for st_info field [klibc] remove local insmod.c copy [klibc] ipconfig
2010 Apr 25
2
[git pull] small fixes, sh4, getruage() README's
..."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" +#include "ocfs2_fs.h" +#include "romfs_fs.h" +#include "squashfs_fs.h" +#include "xfs_sb.h&qu...
2014 Feb 24
0
[PATCH] fstype: f2fs support
...SION][8]; /* extension array */ +} __packed; + +#endif /* F2FS_FS_H */ diff --git a/usr/kinit/fstype/fstype.c b/usr/kinit/fstype/fstype.c index c5a1432..34d633a 100644 --- a/usr/kinit/fstype/fstype.c +++ b/usr/kinit/fstype/fstype.c @@ -37,6 +37,7 @@ #include "romfs_fs.h" #include "squashfs_fs.h" #include "xfs_sb.h" +#include "f2fs_fs.h" /* * Slightly cleaned up version of jfs_superblock to @@ -472,6 +473,18 @@ static int btrfs_image(const void *buf, unsigned long long *bytes) return 0; } +static int f2fs_image(const void *buf, unsigned long long *byt...
2008 Mar 03
0
[PATCH] nilfs2 support for fstype
...in any way). diff -Nur klibc-1.5.7.orig/usr/kinit/fstype/fstype.c klibc-1.5.7/usr/kinit/fstype/fstype.c --- klibc-1.5.7.orig/usr/kinit/fstype/fstype.c 2007-09-04 09:17:12.000000000 +0100 +++ klibc-1.5.7/usr/kinit/fstype/fstype.c 2008-03-03 16:57:34.522813138 +0000 @@ -33,6 +33,7 @@ #include "squashfs_fs.h" #include "gfs2_fs.h" #include "ocfs2_fs.h" +#include "nilfs_fs.h" /* * Slightly cleaned up version of jfs_superblock to @@ -326,6 +327,19 @@ return 0; } +static int nilfs2_image(const void *buf, unsigned long long *bytes) +{ + const struct nilfs_su...
2010 Jul 07
0
[git pull v2] x86_32, sh4, getrusage()
..."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" +#include "ocfs2_fs.h" +#include "romfs_fs.h" +#include "squashfs_fs.h" +#include "xfs_sb.h&qu...
2007 Aug 21
1
[git patch] dmesg + fstype ocfs2
...E=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(const void *buf, unsigned long long *b...
2008 Mar 25
2
bunch of small fixes
hello hpa, nothing particular stands out, just syncing with latest Debian upload and subsequent patch emails. please review merge or nack. thanks :) maks git pull git://git.debian.org/~maks/klibc.git maks for the changes: Aaron Griffin (1): [klibc] kinit: skip md assembly if mdX exists Colin Watson (1): [klibc] mount/umount FUSE support Harald Jenny (1): [klibc] fstype: