This file is indexed.

/usr/share/doc/squashfs-tools/README-4.2 is in squashfs-tools 1:4.2-4build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
	SQUASHFS 4.2 - A squashed read-only filesystem for Linux

	Copyright 2002-2011 Phillip Lougher <phillip@lougher.demon.co.uk>

	Released under the GPL licence (version 2 or later).

Welcome to Squashfs 4.2.  This is a tools only release, support for Squashfs
filesystems is in mainline (2.6.29 and later).

New features in Squashfs-tools 4.2
----------------------------------

  1. Support for XZ compression
  2. Support for compressor specific options

Compatiblity
------------

Mksquashfs 4.2 generates 4.0 filesystems.  These filesystems are fully
compatible/interchangable with filesystems generated by Mksquashfs 4.0 and are
mountable on 2.6.29 and later kernels.

XZ compression
--------------

Squashfs now supports XZ compression.  

XZ support is in 2.6.38 and newer kernels.

New Mksquashfs options
----------------------

-X<compressor-option>

  Compression algorithms can now support compression specific options.  These
options are prefixed by -X, and are passed to the compressor for handling.

  The compression specific options supported by each compressor can be
found by typing mksquashfs without any arguments.  They are displayed at the
end of the help message, e.g. 

Compressors available and compressor specific options:
	gzip (no options) (default)
	lzo (no options)
	xz
	  -Xbcj filter1,filter2,...,filterN
		Compress using filter1,filter2,...,filterN in turn
		(in addition to no filter), and choose the best compression.
		Available filters: x86, arm, armthumb, powerpc, sparc, ia64
	  -Xdict-size <dict-size>
		Use <dict-size> as the XZ dictionary size.  The dictionary size
		can be specified as a percentage of the block size, or as an
		absolute value.  The dictionary size must be less than or equal
		to the block size and 8192 bytes or larger.  It must also be
		storable in the xz header as either 2^n or as 2^n+2^(n+1).
		Example dict-sizes are 75%, 50%, 37.5%, 25%, or 32K, 16K, 8K
		etc.