summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-08-07 12:08:37 +0200
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-08-07 12:08:37 +0200
commit9df4edbd5df8ff1e557f9e22b2612c06a6b1d505 (patch)
tree218744e1c1d07aabfe2b8f644e848cae010fad03 /doc
parentda2dbf9f9bd1a244a618b9dc141a9fcb19b23427 (diff)
Add documentation for sqfsdiff
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'doc')
-rw-r--r--doc/Makemodule.am2
-rw-r--r--doc/sqfsdiff.153
2 files changed, 54 insertions, 1 deletions
diff --git a/doc/Makemodule.am b/doc/Makemodule.am
index 1792da9..3619345 100644
--- a/doc/Makemodule.am
+++ b/doc/Makemodule.am
@@ -1,2 +1,2 @@
dist_man1_MANS += doc/gensquashfs.1 doc/rdsquashfs.1 doc/sqfs2tar.1
-dist_man1_MANS += doc/tar2sqfs.1
+dist_man1_MANS += doc/tar2sqfs.1 doc/sqfsdiff.1
diff --git a/doc/sqfsdiff.1 b/doc/sqfsdiff.1
new file mode 100644
index 0000000..ca3818f
--- /dev/null
+++ b/doc/sqfsdiff.1
@@ -0,0 +1,53 @@
+.TH SQFSDIFF "1" "August 2019" "sqfsdiff" "User Commands"
+.SH NAME
+sqfsdiff \- compare two squashfs images by contents and metadata
+.SH SYNOPSIS
+.B sqfsdiff
+[\fI\,OPTIONS\/\fR...] \fI\,<first> <second>\/\fR
+.SH DESCRIPTION
+Compare two squashfs images. In contrast to doing a direct diff of the
+images, this actually parses the filesystems and generates a more
+meaningful difference report.
+.PP
+If only contents are compared, any differences in packed file layout,
+ordering, compression, inode allocation and so on is ignored and the two
+images are considered equal if each directory contains the same entries,
+symlink with the same paths have the same targets, device nodes the same
+device number and files the same size and contents.
+.PP
+A report of any difference is printed to stdout. The exit status is similar
+that of diff(1): 0 means equal, 1 means different, 2 means problem.
+.PP
+Possible options:
+.TP
+\fB\-\-no\-contents\fR, \fB\-C\fR
+Do not compare file contents.
+.TP
+\fB\-\-no\-owner\fR, \fB\-O\fR
+Do not compare file owners.
+.TP
+\fB\-\-no\-permissions\fR, \fB\-P\fR
+Do not compare permission bits.
+.TP
+\fB\-\-timestamps\fR, \fB\-T\fR
+Compare file timestamps.
+.TP
+\fB\-\-inode\-num\fR, \fB\-I\fR
+Compare inode numbers of all files.
+.TP
+\fB\-\-super\fR, \fB\-S\fR
+Also compare metadata in super blocks.
+.TP
+\fB\-\-help\fR, \fB\-h\fR
+Print help text and exit.
+.TP
+\fB\-\-version\fR, \fB\-V\fR
+Print version information and exit.
+.SH AUTHOR
+Written by David Oberhollenzer.
+.SH COPYRIGHT
+Copyright \(co 2019 David Oberhollenzer et al
+License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
+.br
+This is free software: you are free to change and redistribute it.
+There is NO WARRANTY, to the extent permitted by law.