summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2020-09-02 01:16:50 -0400
committerDavid P <megver83@parabola.nu>2020-09-02 01:17:06 -0400
commit634f0798178bc8ded32ef67088e8e896434457a8 (patch)
treeceffab7563b02897d27c95986fe1829f20a42341
parent66b895d70d3cd9b3fb5558055e1aff8ae9e85d4a (diff)
mkparabolaiso: fix typo, specify $arch when telling about the package list creation, add missing -r option
Signed-off-by: David P <megver83@parabola.nu>
-rwxr-xr-xparabolaiso/mkparabolaiso5
1 files changed, 3 insertions, 2 deletions
diff --git a/parabolaiso/mkparabolaiso b/parabolaiso/mkparabolaiso
index d626901..dcf1448 100755
--- a/parabolaiso/mkparabolaiso
+++ b/parabolaiso/mkparabolaiso
@@ -126,7 +126,7 @@ usage ${app_name} [options] <profile_dir or legacy_command>
Default: '${iso_publisher}'
-c <comp_type> Set SquashFS compression type (gzip, lzma, lzo, xz, zstd)
Default: '${sfs_comp}'
- -g <gpg_key> Set the GPG key to be used for signing the sqashfs image
+ -g <gpg_key> Set the GPG key to be used for signing the squashfs image
-h This message
-o <out_dir> Set the output directory
Default: '${out_dir}'
@@ -775,7 +775,7 @@ _export_gpg_publickey() {
_make_pkglist() {
install -d -m 0755 -- "${isofs_dir}/${install_dir}"
- _msg_info "Creating a list of installed packages on live-enviroment..."
+ _msg_info "Creating a list of installed packages on ${arch} live-enviroment..."
pacman -Q --sysroot "${airootfs_dir}" > "${isofs_dir}/${install_dir}/pkglist.${arch}.txt"
_msg_info "Done!"
}
@@ -898,6 +898,7 @@ while getopts 'p:r:C:L:P:A:D:w:o:s:c:g:vh?' arg; do
read -r -a opt_pkg_list <<< "${OPTARG}"
pkg_list+=("${opt_pkg_list[@]}")
;;
+ r) run_cmd="${OPTARG}" ;;
C) override_pacman_conf="$(realpath -- "${OPTARG}")" ;;
L) override_iso_label="${OPTARG}" ;;
P) override_iso_publisher="${OPTARG}" ;;