Add libfsimage, a C library for reading files from filesystem images.
authorTim Deegan <Tim.Deegan@xensource.com>
Thu, 9 Nov 2006 14:09:53 +0000 (14:09 +0000)
committerTim Deegan <Tim.Deegan@xensource.com>
Thu, 9 Nov 2006 14:09:53 +0000 (14:09 +0000)
commitcddc1d5a09b0ee520e31d9f56dfb4a20f6fb3ba1
tree40779970f5ad69d7f5cea225844c430e48812b8c
parent21b5e9be6acce19ff8aa22e55a0ddc69d7b19750
Add libfsimage, a C library for reading files from filesystem images.
Initial support is provided for Solaris UFS, ext2 (both using libext2fs
and not), and reiserfs.

Signed-off-by: John Levon <john.levon@sun.com>
23 files changed:
tools/Makefile
tools/libfsimage/Makefile [new file with mode: 0644]
tools/libfsimage/Rules.mk [new file with mode: 0644]
tools/libfsimage/check-libext2fs [new file with mode: 0755]
tools/libfsimage/common/Makefile [new file with mode: 0644]
tools/libfsimage/common/fsimage.c [new file with mode: 0644]
tools/libfsimage/common/fsimage.h [new file with mode: 0644]
tools/libfsimage/common/fsimage_grub.c [new file with mode: 0644]
tools/libfsimage/common/fsimage_grub.h [new file with mode: 0644]
tools/libfsimage/common/fsimage_plugin.c [new file with mode: 0644]
tools/libfsimage/common/fsimage_plugin.h [new file with mode: 0644]
tools/libfsimage/common/fsimage_priv.h [new file with mode: 0644]
tools/libfsimage/common/mapfile-GNU [new file with mode: 0644]
tools/libfsimage/common/mapfile-SunOS [new file with mode: 0644]
tools/libfsimage/ext2fs-lib/Makefile [new file with mode: 0644]
tools/libfsimage/ext2fs-lib/ext2fs-lib.c [new file with mode: 0644]
tools/libfsimage/ext2fs/Makefile [new file with mode: 0644]
tools/libfsimage/ext2fs/fsys_ext2fs.c [new file with mode: 0644]
tools/libfsimage/reiserfs/Makefile [new file with mode: 0644]
tools/libfsimage/reiserfs/fsys_reiserfs.c [new file with mode: 0644]
tools/libfsimage/ufs/Makefile [new file with mode: 0644]
tools/libfsimage/ufs/fsys_ufs.c [new file with mode: 0644]
tools/libfsimage/ufs/ufs.h [new file with mode: 0644]