index : mkinitcpio-archiso32 | |
Archlinux32 initcpio scripts used by archiso | gitolite user |
summaryrefslogtreecommitdiff |
author | nl6720 <nl6720@gmail.com> | 2021-12-14 18:17:36 +0200 |
---|---|---|
committer | nl6720 <nl6720@gmail.com> | 2021-12-14 18:17:36 +0200 |
commit | 10fd8787bcb4186100c4a726589855804aabc8f4 (patch) | |
tree | 3badc2e7ccdcd76eaf16324597290b06da1870e1 /hooks/archiso_loop_mnt | |
parent | 5dfbb5327c741e287d22dc0db0f74db12b1ba624 (diff) | |
parent | d0d7eb25cf503753cb1452756059a281289e7a41 (diff) |
-rw-r--r-- | hooks/archiso_loop_mnt | 7 |
diff --git a/hooks/archiso_loop_mnt b/hooks/archiso_loop_mnt index a5a71e8..05dc056 100644 --- a/hooks/archiso_loop_mnt +++ b/hooks/archiso_loop_mnt @@ -21,11 +21,6 @@ archiso_loop_mount_handler() { msg ":: Setup a loop device from ${img_loop} located at device ${img_dev}" _mnt_dev "${img_dev}" "/run/archiso/img_dev" "-r" "${img_flags}" - # shellcheck disable=SC2154 - # defined via initcpio's parse_cmdline() - if [ "${copytoram}" != "y" ]; then - readlink -f "${img_dev}" >>/run/archiso/used_block_devices - fi if _dev_loop=$(losetup --find --show --read-only "/run/archiso/img_dev/${img_loop}"); then export archisodevice="${_dev_loop}" @@ -36,6 +31,8 @@ archiso_loop_mount_handler() { archiso_mount_handler "${newroot}" + # shellcheck disable=SC2154 + # defined via initcpio's parse_cmdline() if [ "${copytoram}" = "y" ]; then losetup -d "${_dev_loop}" 2>/dev/null umount /run/archiso/img_dev |