]> git.ipfire.org Git - thirdparty/libsolv.git/commitdiff
Document rpmdb2solv options
authorMichael Schroeder <mls@suse.de>
Wed, 27 Mar 2019 11:00:01 +0000 (12:00 +0100)
committerMichael Schroeder <mls@suse.de>
Wed, 27 Mar 2019 11:00:01 +0000 (12:00 +0100)
doc/rpmdb2solv.txt
tools/rpmdb2solv.c

index ad8314f049e032e61c1bfea9084e287173c8d657..128e179251462d6c03e4fac3c9688fa7d2309520 100644 (file)
@@ -47,6 +47,9 @@ standard directory is */etc/products.d*.
 Do not read any packages from the rpm database. This is useful
 together with *-p* to only convert SUSE products.
 
+*-C*::
+Include the package changelog in the generated solv file.
+
 *-X*::
 Autoexpand SUSE pattern and product provides into packages.
 
index 58ef5675ecd0e7d25c407f46d00cf1487d309c99..1a04adf85d66ec165b797030b488e86e7ee4dda6 100644 (file)
@@ -41,11 +41,13 @@ static void
 usage(int status)
 {
   fprintf(stderr, "\nUsage:\n"
-         "rpmdb2solv [-n] [-b <basefile>] [-p <productsdir>] [-r <root>]\n"
+         "rpmdb2solv [-P] [-C] [-n] [-b <basefile>] [-p <productsdir>] [-r <root>]\n"
          " -n : No packages, do not read rpmdb, useful to only parse products\n"
          " -p <productsdir> : Scan <productsdir> for .prod files, representing installed products\n"
          " -r <root> : Prefix rpmdb path and <productsdir> with <root>\n"
          " -o <solv> : Write .solv to file instead of stdout\n"
+          " -P : print percentage done\n"
+          " -C : include the changelog\n"
         );
   exit(status);
 }