diff --git a/installer/installer.sh b/installer/installer.sh index f76f208..b7b73ad 100755 --- a/installer/installer.sh +++ b/installer/installer.sh @@ -364,7 +364,7 @@ chmod 0750 $MOUNTPOINT/root UDEV_ROOT=$MOUNTPOINT/dev /lib/udev/devices/MAKEDEV dcop_write $"Binding system dirs to new mountpoint..." 73 -echo $"Binding /dev, /proc and /sys to new mountpoint" +echo $"Binding /dev, /proc, /run and /sys to new mountpoint" mount -o bind /dev $MOUNTPOINT/dev || { echo $"Error: could not bind /dev to new mountpoint; aborting." >&2 abort @@ -373,6 +373,10 @@ mount -o bind /proc $MOUNTPOINT/proc || { echo $"Error: could not bind /proc to new mountpoint; aborting." >&2 abort } +mount -o bind /run $MOUNTPOINT/run || { + echo $"Error: could not bind /run to new mountpoint; aborting." >&2 + abort +} mount -o bind /sys $MOUNTPOINT/sys || { echo $"Error: could not bind /sys to new mountpoint; aborting." >&2 abort @@ -620,6 +624,7 @@ rm -f $MOUNTPOINT/root/.DCOPserver* $MOUNTPOINT/root/.ICEauthority umount $MOUNTPOINT/dev umount $MOUNTPOINT/proc +umount $MOUNTPOINT/run umount $MOUNTPOINT/sys [ "$INSTALL_HOME_DEVICE" ] && umount $MOUNTPOINT/home