index : mkinitcpio-archiso32 | |
Archlinux32 initcpio scripts used by archiso | gitolite user |
summaryrefslogtreecommitdiff |
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2010-07-09 15:58:17 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2010-07-09 16:14:55 -0300 |
commit | 7317cb29aba4ab2b89e1ad0475de3f1fd8f0c386 (patch) | |
tree | 6b6835f8eeba2fe521a6914b77ab1cbb294adb28 /archiso/hooks | |
parent | 041bdbc081a8be54e8f092f8b4494b3e23fc0a7a (diff) |
-rw-r--r-- | archiso/hooks/archiso | 24 |
diff --git a/archiso/hooks/archiso b/archiso/hooks/archiso index 23ae4e2..ef8dc58 100644 --- a/archiso/hooks/archiso +++ b/archiso/hooks/archiso @@ -22,12 +22,12 @@ _mnt_squashfs() { mnt="${2}" img_fullname="${img##*/}"; img_name="${img_fullname%.*}" - tmp_mnt="/tmpfs/mnt/${img_name}" + tmp_mnt="/ro_branch/${img_name}" if [ "${copytoram}" = "y" ]; then msg -n ":: Copying squashfs image to RAM..." - /bin/cp "${img}" "/tmpfs.sqfs/${img_fullname}" - img="/tmpfs.sqfs/${img_fullname}" + /bin/cp "${img}" "/copytoram/${img_fullname}" + img="/copytoram/${img_fullname}" msg "done." fi @@ -46,12 +46,12 @@ run_hook () { arch="$(uname -m)" fi - if [ "x${tmpfs_size}" = "x" ]; then - tmpfs_size="75%" + if [ "x${rw_branch_size}" = "x" ]; then + rw_branch_size="75%" fi - if [ "x${tmpfs_sqfs_size}" = "x" ]; then - tmpfs_sqfs_size="75%" + if [ "x${copytoram_size}" = "x" ]; then + copytoram_size="75%" fi if [ "x${archisobasedir}" != "x" ]; then @@ -109,17 +109,17 @@ archiso_mount_handler() { fi if [ "${copytoram}" = "y" ]; then - msg -n ":: Mounting tmpfs (for squashfs), size=${tmpfs_sqfs_size}..." - mount -t tmpfs -o "size=${tmpfs_sqfs_size}",mode=0755 tmpfs /tmpfs.sqfs + msg -n ":: Mounting /copytoram (tmpfs) filesystem, size=${copytoram_size}..." + mount -t tmpfs -o "size=${copytoram_size}",mode=0755 copytoram /copytoram msg "done." fi - msg -n ":: Mounting tmpfs, size=${tmpfs_size}..." - mount -t tmpfs -o "size=${tmpfs_size}",mode=0755 tmpfs /tmpfs + msg -n ":: Mounting rw_branch (tmpfs) filesystem, size=${rw_branch_size}..." + mount -t tmpfs -o "size=${rw_branch_size}",mode=0755 rw_branch /rw_branch msg "done." msg ":: Mounting root (aufs) filesystem" - /bin/mount -t aufs -o dirs=/tmpfs=rw none "${newroot}" + /bin/mount -t aufs -o dirs=/rw_branch=rw none "${newroot}" if [ $? -ne 0 ]; then echo "ERROR: while mounting root (aufs) filesystem." exit 1 |