diff options
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2012-02-22 19:37:10 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2012-02-22 21:18:15 -0300 |
commit | f0b4c353371d3348fb436fbf69d9006b3f60f475 (patch) | |
tree | 0024fa48b27702692fcfcd0fc990c5f6fb93cbf5 /archiso | |
parent | e6c885d29f14e3fdeea4a61a15721f70e2e7115a (diff) | |
download | archiso32-f0b4c353371d3348fb436fbf69d9006b3f60f475.tar.xz |
[archiso] Use losetup/mount instead of mount directly *.sfs
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
Diffstat (limited to 'archiso')
-rw-r--r-- | archiso/hooks/archiso | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/archiso/hooks/archiso b/archiso/hooks/archiso index 54c3223..abe9932 100644 --- a/archiso/hooks/archiso +++ b/archiso/hooks/archiso @@ -40,6 +40,7 @@ _mnt_sfs() { local img="${1}" local mnt="${2}" local img_fullname="${img##*/}" + local sfs_dev if [[ "${copytoram}" == "y" ]]; then msg -n ":: Copying squashfs image to RAM..." @@ -50,7 +51,8 @@ _mnt_sfs() { img="/run/archiso/copytoram/${img_fullname}" msg "done." fi - _mnt_dev "${img}" "${mnt}" "-r" + sfs_dev=$(losetup --find --show --read-only "${img}") + _mnt_dev "${sfs_dev}" "${mnt}" "-r" } # args: device, mountpoint, flags |