From 625dda09c1b996728caf0296d1aa702eaf8ca584 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Thu, 15 Sep 2005 21:13:08 +0000 Subject: Do not mount / on CDROM --- etc/rc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'etc') diff --git a/etc/rc b/etc/rc index bf8d1d7..1b705a3 100755 --- a/etc/rc +++ b/etc/rc @@ -43,7 +43,9 @@ fi /sbin/conscontrol mute off >/dev/null # Mount /. If it fails run a fsck. -/sbin/mount -w / || /sbin/fsck -y +if [ ! "$PLATFORM" = "cdrom" ] ; then + /sbin/mount -w / || /sbin/fsck -y +fi # Check to see if a compact flash mountpoint exists # If it fails to mount then run a fsck -y -- cgit v1.1