index : mkinitcpio-archiso32 | |
Archlinux32 initcpio scripts used by archiso | gitolite user |
summaryrefslogtreecommitdiff |
author | Adam Purkrt <adam@purkrt.net> | 2015-08-30 00:39:41 +0200 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@gmail.com> | 2015-09-13 14:45:20 -0300 |
commit | 76f8b588f20396a3624bf56b87fc3acaa8cbb992 (patch) | |
tree | b3611bd8e0f3f4c1e82cfdbe96a9205bdad0e2c8 /hooks | |
parent | 0cbf37f5ea5b3aa6ab616520daa122db9e8e83ff (diff) |
-rw-r--r-- | hooks/archiso_loop_mnt | 4 |
diff --git a/hooks/archiso_loop_mnt b/hooks/archiso_loop_mnt index 46338e5..f95a47d 100644 --- a/hooks/archiso_loop_mnt +++ b/hooks/archiso_loop_mnt @@ -18,7 +18,9 @@ archiso_loop_mount_handler () { echo $(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 + if _dev_loop=$(losetup --find --show --read-only "/run/archiso/img_dev/${img_loop}"); then + archisodevice="${_dev_loop}" + else echo "ERROR: Setting loopback device for file '/run/archiso/img_dev/${img_loop}'" launch_interactive_shell fi |