forked from ports/contrib
31 lines
606 B
Bash
31 lines
606 B
Bash
#!/bin/sh
|
|
#
|
|
# This script performs all steps you have to anyway if you want to enter
|
|
# the rescuemode via the bootprompt:
|
|
#
|
|
# linux init=/bin/sh
|
|
#
|
|
# So now you can use:
|
|
#
|
|
# linux init=/etc/rc.rescue
|
|
#
|
|
|
|
. /etc/rc.dev
|
|
|
|
export PATH="$PATH:/sbin:/usr/bin:/usr/sbin"
|
|
|
|
echo -n 'Attempting to mount / writable... '
|
|
if mount -o remount,rw /; then
|
|
echo 'Succes.'
|
|
else
|
|
echo 'Failed.'
|
|
fi
|
|
echo 'Use "/bin/zsh" to get to your favourite shell.'
|
|
echo 'Use exit or ^D to safely exit and reboot.'
|
|
/bin/sh
|
|
echo 'Unmounting all filesystems and rebooting.'
|
|
umount -a -r
|
|
/sbin/shutdown -n -r now
|
|
|
|
# End of file
|