summaryrefslogtreecommitdiff
path: root/archiso/hooks
diff options
context:
space:
mode:
Diffstat (limited to 'archiso/hooks')
-rw-r--r--archiso/hooks/archiso27
1 files changed, 22 insertions, 5 deletions
diff --git a/archiso/hooks/archiso b/archiso/hooks/archiso
index 9997b38..1ac4d86 100644
--- a/archiso/hooks/archiso
+++ b/archiso/hooks/archiso
@@ -15,6 +15,12 @@ _mnt_squashfs() {
img_name="${img_fullname%.*}"
tmp_mnt="/tmpfs/mnt/${img_name}"
+ if [ "${copytoram}" = "y" ]; then
+ msg ":: Copying squashfs image to RAM"
+ /bin/cp "${img}" "/tmpfs.sqfs/${img_fullname}"
+ img="/tmpfs.sqfs/${img_fullname}"
+ fi
+
msg "::: Adding new aufs branch: ${img_name}"
mkdir -p "${tmp_mnt}"
/bin/mount -r -t squashfs "${img}" "${tmp_mnt}"
@@ -34,6 +40,10 @@ run_hook () {
tmpfs_size="75%"
fi
+ if [ "x${tmpfs_sqfs_size}" = "x" ]; then
+ tmpfs_sqfs_size="75%"
+ fi
+
if [ "x${isomounts}" != "x" ]; then
isomounts="/bootmnt/${isomounts}"
else
@@ -55,6 +65,12 @@ archiso_mount_handler() {
mount -t tmpfs -o "size=${tmpfs_size}" 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
+ msg "done."
+ fi
+
msg ":: Waiting for boot device..."
while ! poll_device ${archisodevice} 30; do
echo "ERROR: boot device didn't show up after 30 seconds..."
@@ -114,13 +130,14 @@ archiso_mount_handler() {
# Bind our bootmnt dir into the live system
_mnt_bind /bootmnt "${newroot}/bootmnt"
- if [ "${FSTYPE}" = "iso9660" -o "${FSTYPE}" = "udf" ]; then
- if [ -d /proc/sys/dev/cdrom ]; then
- echo 0 > /proc/sys/dev/cdrom/lock
- echo 0 > /proc/sys/dev/cdrom/autoeject
+ if [ "${copytoram}" != "y" ]; then
+ if [ "${FSTYPE}" = "iso9660" ] || [ "${FSTYPE}" = "udf" ]; then
+ if [ -d /proc/sys/dev/cdrom ]; then
+ echo 0 > /proc/sys/dev/cdrom/lock
+ echo 0 > /proc/sys/dev/cdrom/autoeject
+ fi
fi
fi
-
}
# vim:ft=sh:ts=4:sw=4:et: