diff options
| author | thorpej <thorpej@NetBSD.org> | 1995-08-27 20:30:53 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 1995-08-27 20:30:53 +0000 |
| commit | 4e7f37f974b7bb378f13ed8d12ea85d56e84232c (patch) | |
| tree | 402c3cbaae352a547d816bd3ec9e0ce76c87aa50 | |
| parent | 70c3710dfd7144b741722051c340353829a0f6de (diff) | |
Configure ccd devices before the filesystem checks, as suggested by
Thomas Eberhardt in PR #1408.
| -rw-r--r-- | etc/rc | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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." |
