Remove dupe code for mounting base image

Also improved variable naming.

Signed-off-by: Simo Leone <simo@archlinux.org>
This commit is contained in:
Simo Leone 2007-10-24 20:18:48 -05:00
parent adbe44f229
commit cd4b603584

View File

@ -36,27 +36,20 @@ run_hook ()
exit 1 exit 1
fi fi
squashimg="${BOOT_MOUNT}/archlive.sqfs" base_img="${BOOT_MOUNT}/archlive.sqfs"
if [ "${copytoram}" = "y" ]; then if [ "${copytoram}" = "y" ]; then
/bin/cat ${squashimg} > /tmpfs/archlive.sqfs /bin/cat ${base_img} > /tmpfs/archlive.sqfs
squashimg="/tmpfs/archlive.sqfs" base_img="/tmpfs/archlive.sqfs"
fi fi
msg ":: Mounting squashfs image" msg ":: Mounting squashfs image"
/bin/modprobe -q squashfs >/dev/null 2>&1 /bin/modprobe -q squashfs >/dev/null 2>&1
/bin/mkdir -p /tmpfs/squashfs_root
if ! /bin/losetup /dev/loop0 "${squashimg}" >/dev/null 2>&1; then
echo "ERROR: Cannot mount loop device /dev/loop0...aborting"
exit 1
fi
/bin/mount -r -t squashfs /dev/loop0 /tmpfs/squashfs_root
msg ":: Mounting root (union) filesystem" msg ":: Mounting root (union) filesystem"
/bin/modprobe -q unionfs >/dev/null 2>&1 /bin/modprobe -q unionfs >/dev/null 2>&1
/bin/mount -t unionfs -o dirs=/tmpfs=rw none /real_root /bin/mount -t unionfs -o dirs=/tmpfs=rw none /real_root
export LOOP_NUM="1" export LOOP_NUM="0"
addon_dir="${BOOT_MOUNT}/addons" addon_dir="${BOOT_MOUNT}/addons"
# always layer default configuration # always layer default configuration
@ -76,7 +69,8 @@ run_hook ()
done < ${addon_dir}/config done < ${addon_dir}/config
fi fi
/bin/mount -t unionfs -o remount,add=:/tmpfs/squashfs_root=ro none /real_root # layer the "pristine" base system image last
_mnt_squashfs ${base_img}
if [ -d /proc/sys/dev/cdrom ]; then if [ -d /proc/sys/dev/cdrom ]; then
echo 0 > /proc/sys/dev/cdrom/lock echo 0 > /proc/sys/dev/cdrom/lock