summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorthorpej <thorpej@NetBSD.org>1995-08-27 20:30:53 +0000
committerthorpej <thorpej@NetBSD.org>1995-08-27 20:30:53 +0000
commit4e7f37f974b7bb378f13ed8d12ea85d56e84232c (patch)
tree402c3cbaae352a547d816bd3ec9e0ce76c87aa50
parent70c3710dfd7144b741722051c340353829a0f6de (diff)
Configure ccd devices before the filesystem checks, as suggested by
Thomas Eberhardt in PR #1408.
-rw-r--r--etc/rc8
1 files changed, 7 insertions, 1 deletions
diff --git a/etc/rc b/etc/rc
index 9fe4a43815a..3e04dfe11f6 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,5 +1,5 @@
# from: @(#)rc 8.2 (Berkeley) 3/17/94
-# $Id: rc,v 1.49 1994/11/04 13:27:32 briggs Exp $
+# $Id: rc,v 1.50 1995/08/27 20:30:53 thorpej Exp $
# System startup script run by init on autoboot
# or after single-user.
@@ -17,6 +17,12 @@ HOME=/; export HOME
PATH=/sbin:/bin:/usr/sbin:/usr/bin
export PATH
+# Configure ccd devices.
+if [ -f /etc/ccd.conf ]
+then
+ ccdconfig -C
+fi
+
if [ -e /fastboot ]
then
echo "Fast boot: skipping disk checks."