From 634f0798178bc8ded32ef67088e8e896434457a8 Mon Sep 17 00:00:00 2001 From: David P Date: Wed, 2 Sep 2020 01:16:50 -0400 Subject: mkparabolaiso: fix typo, specify $arch when telling about the package list creation, add missing -r option Signed-off-by: David P --- parabolaiso/mkparabolaiso | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'parabolaiso') 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] Default: '${iso_publisher}' -c Set SquashFS compression type (gzip, lzma, lzo, xz, zstd) Default: '${sfs_comp}' - -g Set the GPG key to be used for signing the sqashfs image + -g Set the GPG key to be used for signing the squashfs image -h This message -o 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}" ;; -- cgit v1.2.2