From bc4d5e7320e439450406ec94b2bcae72b20a218c Mon Sep 17 00:00:00 2001 From: Horea Christian Date: Mon, 31 Aug 2020 19:46:24 -0400 Subject: [PATCH] Improved -k parameter documentation --- README.md | 4 ++-- mkstage4.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3b78cd7..8d36836 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Command line arguments: -p: compresses parallelly using pbzip2. -e: an additional excludes directory (one dir one -e). -s: makes tarball of current system. - -k: separately save current kernel modules and src (smaller & save decompression time). + -k: separately save current kernel modules and src (creates smaller archives and saves decompression time). -t: makes tarball of system located at the . -C: specify tar compression (shows available on runtime and default is bz2) -h: displays help message. @@ -75,7 +75,7 @@ To preserve binary attributes and use numeric owner identifiers (considered good tar xvjpf archive_name.tar.bz2 --xattrs-include='*.*' --numeric-owner ``` -If you use the `-k` option, extract `src` and the modules separately: +If you use the `-k` option, extract the `src` and modules archives separately: ```bash tar xvjpf archive_name.tar.bz2.kmod diff --git a/mkstage4.sh b/mkstage4.sh index 6d5cc26..01a0970 100755 --- a/mkstage4.sh +++ b/mkstage4.sh @@ -53,7 +53,7 @@ USAGE="usage:\n\ -e: an additional excludes directory (one dir one -e, donot use it with *).\n\ -i: an additional target to include. This has higher precedence than -e, -t, and -s.\n\ -s: makes tarball of current system.\n\ - -k: separately save current kernel modules and src (smaller & save decompression time).\n\ + -k: separately save current kernel modules and src (creates smaller archives and saves decompression time).\n\ -t: makes tarball of system located at the .\n\ -C: specify tar compression (available: ${!COMPRESS_AVAILABLE[*]}).\n\ -h: displays help message."