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.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2009-05-01 15:41:06 +01:00
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
|
|
|
|
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-02-28 23:09:06 +00:00
|
|
|
//#define CONSOLE_VMWARE /* VMware logfile 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
|
|
|
|
|
|
2010-03-22 23:19:00 +01:00
|
|
|
#include <config/local/console.h>
|
|
|
|
|
|
2008-10-12 02:30:31 +01:00
|
|
|
#endif /* CONFIG_CONSOLE_H */
|