#!	/bin/sh
root_device=`block_device /`
echo "Root is mounted from $root_device"
mount -t minix -o remount $root_device /
# Make sure there are no old entries in /etc/fstab to confuse the installer.
echo "$root_device / minix rw 0 1" >/etc/fstab
mount -t proc proc /proc
update
loadkeys us.map
echo "/etc/rc done."
exit 0
