Only enable comconsole and nullconsole on x86.

This commit is contained in:
Andrew Turner 2015-04-03 12:08:08 +00:00
parent db8a143a94
commit cf5d3022f9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=281020

View File

@ -54,12 +54,16 @@ struct netif_driver *netif_drivers[] = {
};
extern struct console efi_console;
#if defined(__amd64__) || defined(__i386__)
extern struct console comconsole;
extern struct console nullconsole;
#endif
struct console *consoles[] = {
&efi_console,
#if defined(__amd64__) || defined(__i386__)
&comconsole,
&nullconsole,
#endif
NULL
};