diff options
| author | David Runge <dvzrv@archlinux.org> | 2021-05-01 17:16:56 +0200 |
|---|---|---|
| committer | David Runge <dvzrv@archlinux.org> | 2021-05-01 17:16:56 +0200 |
| commit | 42cdf8674a43c9ad5b69e3ddb6638cfb07633b9e (patch) | |
| tree | 9b6d72f5db96451b760e7a9dd045d332d5c3a25f | |
| parent | cc735dbbfc79e14548db7378a85380dfbf3513ff (diff) | |
| download | archiso-42cdf8674a43c9ad5b69e3ddb6638cfb07633b9e.tar.gz archiso-42cdf8674a43c9ad5b69e3ddb6638cfb07633b9e.tar.bz2 | |
Set more generic output for signatures
archiso/mkarchiso:
Change the help output to reflect that the `-g` option is generically signing a rootfs (which may be e.g. squashfs or
erofs).
Change the output of `_mksignature()` to be more generic, as it signs any type of understood rootfs image (which may be
e.g. squashfs or erofs).
| -rwxr-xr-x | archiso/mkarchiso | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archiso/mkarchiso b/archiso/mkarchiso index f4af2ad..aaf8325 100755 --- a/archiso/mkarchiso +++ b/archiso/mkarchiso @@ -93,7 +93,7 @@ usage: ${app_name} [options] <profile_dir> Default: '${iso_label}' -P <publisher> Set the ISO publisher Default: '${iso_publisher}' - -g <gpg_key> Set the GPG key to be used for signing the sqashfs image + -g <gpg_key> Set the PGP key ID to be used for signing the rootfs image -h This message -o <out_dir> Set the output directory Default: '${out_dir}' @@ -225,7 +225,7 @@ _mkchecksum() { } _mksignature() { - _msg_info "Signing SquashFS image..." + _msg_info "Signing rootfs image..." cd -- "${isofs_dir}/${install_dir}/${arch}" # always use the .sig file extension, as that is what mkinitcpio-archiso's hooks expect if [[ -e "${isofs_dir}/${install_dir}/${arch}/airootfs.sfs" ]]; then |
