summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMats O Jansson <maja@cvs.openbsd.org>1996-06-23 19:32:57 +0000
committerMats O Jansson <maja@cvs.openbsd.org>1996-06-23 19:32:57 +0000
commit8cd996a3c97256f705e7445d234ffd4fd85fd0db (patch)
tree9e913cd62c65e242d7a26e41d63a89713e321f66 /sys
parentbb4232dad97b11e272586ba1b6636599dbf1c420 (diff)
Added support for user modifiable kernel at boot (-c) /maja
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/device.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/sys/device.h b/sys/sys/device.h
index 8b0190ff3c4..dd7ae04873d 100644
--- a/sys/sys/device.h
+++ b/sys/sys/device.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: device.h,v 1.6 1996/06/16 10:29:55 deraadt Exp $ */
+/* $OpenBSD: device.h,v 1.7 1996/06/23 19:32:56 maja Exp $ */
/* $NetBSD: device.h,v 1.15 1996/04/09 20:55:24 cgd Exp $ */
/*
@@ -100,6 +100,8 @@ struct cfdata {
#define FSTATE_NOTFOUND 0 /* has not been found */
#define FSTATE_FOUND 1 /* has been found */
#define FSTATE_STAR 2 /* duplicable */
+#define FSTATE_DNOTFOUND 3 /* has not been found, and is disabled */
+#define FSTATE_DSTAR 4 /* duplicable, and is disabled */
typedef int (*cfmatch_t) __P((struct device *, void *, void *));
typedef void (*cfscan_t) __P((struct device *, void *));