svn commit: r199855 - in head/sys/boot: forth i386/libi386 i386/loader pc98/loader

TAKAHASHI Yoshihiro nyan at jp.FreeBSD.org
Fri Nov 27 13:00:31 UTC 2009


In article <200911270355.nAR3tgqp001311 at svn.freebsd.org>
Maxim Sobolev <sobomax at FreeBSD.org> writes:

> Log:
>   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).
> 
> Modified: head/sys/boot/pc98/loader/conf.c
> ==============================================================================
> --- head/sys/boot/pc98/loader/conf.c	Fri Nov 27 02:47:49 2009	(r199854)
> +++ head/sys/boot/pc98/loader/conf.c	Fri Nov 27 03:55:42 2009	(r199855)
> @@ -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
>  };
>  

This breaks the loader for pc98.

---
TAKAHASHI Yoshihiro <nyan at jp.FreeBSD.org>


More information about the svn-src-all mailing list