summaryrefslogtreecommitdiffstats
path: root/sys/sys/cons.h
diff options
context:
space:
mode:
authorjake <jake@FreeBSD.org>2003-09-28 05:36:30 +0000
committerjake <jake@FreeBSD.org>2003-09-28 05:36:30 +0000
commit8133e9e87531b9c607c60b23f6ae00e4891a2173 (patch)
treed46f82611d1cecde4449fe5b6f6cdefe7921ecfa /sys/sys/cons.h
parentcf9458da70a4b58c40c447b3580e0fa7b98d1e8a (diff)
downloadFreeBSD-src-8133e9e87531b9c607c60b23f6ae00e4891a2173.zip
FreeBSD-src-8133e9e87531b9c607c60b23f6ae00e4891a2173.tar.gz
Add a "low" console priority. This specifies that the console device
may have limited functionality and should only be used as a last resort, perhaps only to tell the user that they should be using something else.
Diffstat (limited to 'sys/sys/cons.h')
-rw-r--r--sys/sys/cons.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/sys/cons.h b/sys/sys/cons.h
index 19f66f9..e8994bf 100644
--- a/sys/sys/cons.h
+++ b/sys/sys/cons.h
@@ -75,9 +75,10 @@ struct consdev {
/* values for cn_pri - reflect our policy for console selection */
#define CN_DEAD 0 /* device doesn't exist */
-#define CN_NORMAL 1 /* device exists but is nothing special */
-#define CN_INTERNAL 2 /* "internal" bit-mapped display */
-#define CN_REMOTE 3 /* serial interface with remote bit set */
+#define CN_LOW 1 /* device is a last restort only */
+#define CN_NORMAL 2 /* device exists but is nothing special */
+#define CN_INTERNAL 3 /* "internal" bit-mapped display */
+#define CN_REMOTE 4 /* serial interface with remote bit set */
#ifdef _KERNEL
extern int cons_unavail;
OpenPOWER on IntegriCloud