aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-11-25 13:28:28 +0100
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2019-11-25 13:28:28 +0100
commit94b547d27f953fefa0ed080611eb916f58702e87 (patch)
tree2f6cce57154b494d0c26588421a979f64c635b9b /README.md
parentfc9a644002dc501a5c224e5cc1a7dfba3ca2d1d8 (diff)
Cleanup: remove what is left of libutil
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 5 insertions, 10 deletions
diff --git a/README.md b/README.md
index f4c3d1b..2adf98b 100644
--- a/README.md
+++ b/README.md
@@ -114,18 +114,14 @@ headers of `libsquashfs.so` which are installed along with the library. All
other headers are private to this package.
The following components exist:
- - `libutil.la` built from files in `lib/util` contains miscellaneous helper
- functions used by `libsquashfs.la` internally, but also of use to other
- libraries or programs.
- `libfstree.a` built from files in `lib/fstree` contains functions for
- manipulating a file system tree. It only depends on `libutil.la`
+ manipulating a file system tree.
- `libtar.a` built from files in `lib/tar` contains data structures and
- functions for parsing and creating tar files. It only depends
- on `libutil.la`.
+ functions for parsing and creating tar files.
- `libsquashfs.so` built from files in `lib/sqfs` contains all kinds of
data structures for reading and writing SquashFS archives. Abstractions
for data compression and so on. It contains the actual brains of this
- package. It uses `libutil.la` internally.
+ package.
- `libcommon.a` built from files in `lib/common` contains a bunch
of commonly used code shared across the utilities.
- `libcompat.a` built from files in `lib/compat` contains minimal
@@ -138,9 +134,8 @@ structures.
The `tests` sub-directory contains unit tests for the libraries.
To allow 3rd party applications to use `libsquashfs.so` without restricting
-their choice of license, the code in the `lib/sqfs` and `lib/util`
-sub-directories is licensed under the LGPLv3, in contrast to the rest of this
-package.
+their choice of license, the code in the `lib/sqfs` sub-directories is
+licensed under the LGPLv3, in contrast to the rest of this package.
## A Note on LZO Support