index : mkinitcpio-archiso32 | |
Archlinux32 initcpio scripts used by archiso | gitolite user |
summaryrefslogtreecommitdiff |
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2010-07-05 19:36:11 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2010-07-05 19:36:11 -0300 |
commit | 9257e34ca255a7ca17e0a9e0b828da02041ad2f7 (patch) | |
tree | 690f15f0754c239f8fa5bd9c491d15781ac0e0d8 /archiso/hooks | |
parent | cee03e306fc89bf67847d42f3164ba013fb36c5b (diff) |
-rw-r--r-- | archiso/hooks/archiso | 4 |
diff --git a/archiso/hooks/archiso b/archiso/hooks/archiso index d979ef4..ae98231 100644 --- a/archiso/hooks/archiso +++ b/archiso/hooks/archiso @@ -76,12 +76,12 @@ archiso_mount_handler() { newroot="${1}" msg -n ":: Mounting tmpfs, size=${tmpfs_size}..." - mount -t tmpfs -o "size=${tmpfs_size}" tmpfs /tmpfs + mount -t tmpfs -o "size=${tmpfs_size}",mode=0755 tmpfs /tmpfs msg "done." if [ "${copytoram}" = "y" ]; then msg -n ":: Mounting tmpfs (for squashfs), size=${tmpfs_sqfs_size}..." - mount -t tmpfs -o "size=${tmpfs_sqfs_size}" tmpfs /tmpfs.sqfs + mount -t tmpfs -o "size=${tmpfs_sqfs_size}",mode=0755 tmpfs /tmpfs.sqfs msg "done." fi |