From: Thomas Veerman Date: Tue, 14 Feb 2012 15:44:21 +0000 (+0000) Subject: Don't update mtab upon mounting procfs X-Git-Tag: v3.2.0~34 X-Git-Url: http://zhaoyanbai.com/repos/?a=commitdiff_plain;h=049112675884d9459b03375d3259844554ac8705;p=minix.git Don't update mtab upon mounting procfs It causes an ugly error message when booting from cd and it gets overwritten by `printroot >/etc/mtab` in /etc/rc anyway. --- diff --git a/drivers/ramdisk/rc b/drivers/ramdisk/rc index 165dd0217..0398db789 100644 --- a/drivers/ramdisk/rc +++ b/drivers/ramdisk/rc @@ -72,6 +72,6 @@ if [ -e $FSCK ] then $FSCK -p $rootdevname fi /bin/newroot $bin_img"$rootdevname" -/bin/mount -e -t procfs none /proc || echo "WARNING: couldn't mount procfs" +/bin/mount -e -n -t procfs none /proc || echo "WARNING: couldn't mount procfs" exec /bin/sh /etc/rc "$@"