summaryrefslogtreecommitdiffstats
path: root/sys/boot/pc98
diff options
context:
space:
mode:
authorsobomax <sobomax@FreeBSD.org>2009-11-27 03:55:42 +0000
committersobomax <sobomax@FreeBSD.org>2009-11-27 03:55:42 +0000
commitb6f35cb16245f36acda0d07553cf947424fb7b62 (patch)
tree2195129ce124b7c68b9b4ff3940ef0a820408cea /sys/boot/pc98
parent39508ed75b28dfbe7ad89a031a90063e7b2da07f (diff)
downloadFreeBSD-src-b6f35cb16245f36acda0d07553cf947424fb7b62.zip
FreeBSD-src-b6f35cb16245f36acda0d07553cf947424fb7b62.tar.gz
Add new loader console type: "spinconsole". This console selects the
video console which doesn't take any input from keyboard and hides all output replacing it with ``spinning'' character (useful for embedded products and custom installations). Sponsored by: Sippy Software, Inc.
Diffstat (limited to 'sys/boot/pc98')
-rw-r--r--sys/boot/pc98/loader/conf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/boot/pc98/loader/conf.c b/sys/boot/pc98/loader/conf.c
index ce80cef..5ef48bd 100644
--- a/sys/boot/pc98/loader/conf.c
+++ b/sys/boot/pc98/loader/conf.c
@@ -100,11 +100,13 @@ struct file_format *file_formats[] = {
extern struct console vidconsole;
extern struct console comconsole;
extern struct console nullconsole;
+extern struct console spinconsole;
struct console *consoles[] = {
&vidconsole,
&comconsole,
&nullconsole,
+ &spinconsole,
NULL
};
OpenPOWER on IntegriCloud