2008-10-12 02:30:31 +01:00
|
|
|
#ifndef CONFIG_CONSOLE_H
|
|
|
|
|
#define CONFIG_CONSOLE_H
|
|
|
|
|
|
|
|
|
|
/** @file
|
|
|
|
|
*
|
|
|
|
|
* Console configuration
|
|
|
|
|
*
|
|
|
|
|
* These options specify the console types that Etherboot will use for
|
|
|
|
|
* interaction with the user.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2015-03-02 11:54:40 +00:00
|
|
|
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
|
2009-05-01 15:41:06 +01:00
|
|
|
|
2008-10-12 02:30:31 +01:00
|
|
|
#include <config/defaults.h>
|
|
|
|
|
|
|
|
|
|
//#define CONSOLE_PCBIOS /* Default BIOS console */
|
|
|
|
|
//#define CONSOLE_SERIAL /* Serial port */
|
|
|
|
|
//#define CONSOLE_DIRECT_VGA /* Direct access to VGA card */
|
|
|
|
|
//#define CONSOLE_PC_KBD /* Direct access to PC keyboard */
|
2011-03-10 05:33:45 +00:00
|
|
|
//#define CONSOLE_SYSLOG /* Syslog console */
|
2012-04-10 11:54:31 +01:00
|
|
|
//#define CONSOLE_SYSLOGS /* Encrypted syslog console */
|
2012-02-28 23:09:06 +00:00
|
|
|
//#define CONSOLE_VMWARE /* VMware logfile console */
|
2012-09-10 15:58:02 +01:00
|
|
|
//#define CONSOLE_DEBUGCON /* Debug port console */
|
2013-11-28 04:15:34 +00:00
|
|
|
//#define CONSOLE_VESAFB /* VESA framebuffer console */
|
2015-05-18 16:02:02 +01:00
|
|
|
//#define CONSOLE_INT13 /* INT13 disk log console */
|
2008-10-12 02:30:31 +01:00
|
|
|
|
2011-03-16 12:01:48 +00:00
|
|
|
#define KEYBOARD_MAP us
|
|
|
|
|
|
2012-03-26 19:50:50 +01:00
|
|
|
#define LOG_LEVEL LOG_NONE
|
|
|
|
|
|
2014-08-19 16:17:25 +01:00
|
|
|
#include <config/named.h>
|
|
|
|
|
#include NAMED_CONFIG(console.h)
|
2010-03-22 23:19:00 +01:00
|
|
|
#include <config/local/console.h>
|
2014-08-19 16:17:25 +01:00
|
|
|
#include LOCAL_NAMED_CONFIG(console.h)
|
2010-03-22 23:19:00 +01:00
|
|
|
|
2008-10-12 02:30:31 +01:00
|
|
|
#endif /* CONFIG_CONSOLE_H */
|