summaryrefslogtreecommitdiffstats
path: root/sys/scsi
diff options
context:
space:
mode:
authoreivind <eivind@FreeBSD.org>1998-01-24 02:54:56 +0000
committereivind <eivind@FreeBSD.org>1998-01-24 02:54:56 +0000
commit71ddd313905625e7a30459009de6972aa2fd42a2 (patch)
tree6d6142bad3e6171bba77304251f69f1a8ab13c2d /sys/scsi
parent71161cca1452c50ca0ea535bae82c1df9c67663c (diff)
downloadFreeBSD-src-71ddd313905625e7a30459009de6972aa2fd42a2.zip
FreeBSD-src-71ddd313905625e7a30459009de6972aa2fd42a2.tar.gz
Make all file-system (MFS, FFS, NFS, LFS, DEVFS) related option new-style.
This introduce an xxxFS_BOOT for each of the rootable filesystems. (Presently not required, but encouraged to allow a smooth move of option *FS to opt_dontuse.h later.) LFS is temporarily disabled, and will be re-enabled tomorrow.
Diffstat (limited to 'sys/scsi')
-rw-r--r--sys/scsi/cd.c3
-rw-r--r--sys/scsi/ch.c4
-rw-r--r--sys/scsi/od.c3
-rw-r--r--sys/scsi/pt.c3
-rw-r--r--sys/scsi/sctarg.c3
-rw-r--r--sys/scsi/sd.c3
-rw-r--r--sys/scsi/ssc.c4
-rw-r--r--sys/scsi/st.c3
-rw-r--r--sys/scsi/worm.c3
9 files changed, 20 insertions, 9 deletions
diff --git a/sys/scsi/cd.c b/sys/scsi/cd.c
index c3808c5..b976c23 100644
--- a/sys/scsi/cd.c
+++ b/sys/scsi/cd.c
@@ -14,10 +14,11 @@
*
* Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
*
- * $Id: cd.c,v 1.87 1997/12/02 21:06:58 phk Exp $
+ * $Id: cd.c,v 1.88 1997/12/14 00:32:33 jraynard Exp $
*/
#include "opt_bounce.h"
+#include "opt_devfs.h"
#include "opt_scsi.h"
#define SPLCD splbio
diff --git a/sys/scsi/ch.c b/sys/scsi/ch.c
index 53e598a..5b507c6 100644
--- a/sys/scsi/ch.c
+++ b/sys/scsi/ch.c
@@ -33,9 +33,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: ch.c,v 1.41 1997/09/02 20:06:31 bde Exp $
+ * $Id: ch.c,v 1.42 1997/09/14 03:19:38 peter Exp $
*/
+#include "opt_devfs.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/chio.h>
diff --git a/sys/scsi/od.c b/sys/scsi/od.c
index 9f9b077..7a08357 100644
--- a/sys/scsi/od.c
+++ b/sys/scsi/od.c
@@ -28,7 +28,7 @@
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: od.c,v 1.33 1997/12/02 21:06:59 phk Exp $
+ * $Id: od.c,v 1.34 1997/12/06 14:27:49 bde Exp $
*/
/*
@@ -56,6 +56,7 @@
*/
#include "opt_bounce.h"
+#include "opt_devfs.h"
#include "opt_scsi.h"
#include "opt_od.h"
diff --git a/sys/scsi/pt.c b/sys/scsi/pt.c
index 06d314b..25cb990 100644
--- a/sys/scsi/pt.c
+++ b/sys/scsi/pt.c
@@ -37,10 +37,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: pt.c,v 1.25 1997/12/02 21:07:00 phk Exp $
+ * $Id: pt.c,v 1.26 1998/01/06 08:28:46 julian Exp $
*/
#include "opt_bounce.h"
+#include "opt_devfs.h"
#include "opt_scsi.h"
#include <sys/param.h>
diff --git a/sys/scsi/sctarg.c b/sys/scsi/sctarg.c
index 1462769..bdf1d0e 100644
--- a/sys/scsi/sctarg.c
+++ b/sys/scsi/sctarg.c
@@ -37,10 +37,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: sctarg.c,v 1.22 1997/09/21 22:03:11 gibbs Exp $
+ * $Id: sctarg.c,v 1.23 1997/12/02 21:07:02 phk Exp $
*/
#include "opt_bounce.h"
+#include "opt_devfs.h"
#include "opt_scsi.h"
#include <sys/param.h>
diff --git a/sys/scsi/sd.c b/sys/scsi/sd.c
index 0d5200c..2ee8f69 100644
--- a/sys/scsi/sd.c
+++ b/sys/scsi/sd.c
@@ -15,10 +15,11 @@
*
* Ported to run under 386BSD by Julian Elischer (julian@dialix.oz.au) Sept 1992
*
- * $Id: sd.c,v 1.118 1997/12/28 09:10:37 julian Exp $
+ * $Id: sd.c,v 1.119 1997/12/29 07:49:31 julian Exp $
*/
#include "opt_bounce.h"
+#include "opt_devfs.h"
#include "opt_scsi.h"
#define SPLSD splbio
diff --git a/sys/scsi/ssc.c b/sys/scsi/ssc.c
index 3e2fba6..9ad707e 100644
--- a/sys/scsi/ssc.c
+++ b/sys/scsi/ssc.c
@@ -49,9 +49,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*End copyright
- * $Id: ssc.c,v 1.16 1997/09/14 03:19:39 peter Exp $
+ * $Id: ssc.c,v 1.17 1997/12/23 19:44:45 brian Exp $
*/
+#include "opt_devfs.h"
+
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/conf.h>
diff --git a/sys/scsi/st.c b/sys/scsi/st.c
index 93f7c54..8993ede 100644
--- a/sys/scsi/st.c
+++ b/sys/scsi/st.c
@@ -12,7 +12,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
- * $Id: st.c,v 1.83 1997/11/23 11:56:18 bde Exp $
+ * $Id: st.c,v 1.84 1997/12/02 21:07:05 phk Exp $
*/
/*
@@ -28,6 +28,7 @@
*/
#include "opt_bounce.h"
+#include "opt_devfs.h"
#include "opt_scsi.h"
#include <sys/param.h>
diff --git a/sys/scsi/worm.c b/sys/scsi/worm.c
index b4bb6c9..da29b64 100644
--- a/sys/scsi/worm.c
+++ b/sys/scsi/worm.c
@@ -43,10 +43,11 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: worm.c,v 1.49 1997/12/20 23:03:49 joerg Exp $
+ * $Id: worm.c,v 1.50 1997/12/26 14:52:29 joerg Exp $
*/
#include "opt_bounce.h"
+#include "opt_devfs.h"
#include "opt_scsi.h"
#include <sys/param.h>
OpenPOWER on IntegriCloud