diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-05-05 01:03:16 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-05-05 01:56:50 +0200 |
commit | 949d1c2a5553b54fe6bc2b8c7aca10a892e595d7 (patch) | |
tree | 19f23bd62f8099a088926e45216546e813bec80f /unpack/Makemodule.am | |
parent | da5656a8a696863e0d9941091c09c75b03a6070b (diff) |
rdsquashfs: reorder unpack flags, add flag to produce listing
The listing command has been used successfully to do the following:
- generate a prestine file system using gensquashfs
- repeate multiple times:
- generate a listing from the file system
- unpack only the regular files from the file system
- generate a new file system from the listing
- run `diff` on the old and new filesystem and admire that they
are identical
- replace the old file system with the new one, since they are
identical
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'unpack/Makemodule.am')
-rw-r--r-- | unpack/Makemodule.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unpack/Makemodule.am b/unpack/Makemodule.am index 6a0eab0..d47cb5e 100644 --- a/unpack/Makemodule.am +++ b/unpack/Makemodule.am @@ -1,7 +1,7 @@ rdsquashfs_SOURCES = unpack/rdsquashfs.c unpack/tree_node_from_inode.c rdsquashfs_SOURCES += unpack/rdsquashfs.h unpack/read_fstree.c rdsquashfs_SOURCES += unpack/list_files.c unpack/extract_file.c -rdsquashfs_SOURCES += unpack/restore_fstree.c +rdsquashfs_SOURCES += unpack/restore_fstree.c unpack/describe.c rdsquashfs_LDADD = libsquashfs.a libfstree.a libcompress.a libutil.a if WITH_XZ |