00001 #ifndef CONFIG_CONSOLE_H 00002 #define CONFIG_CONSOLE_H 00003 00004 /** @file 00005 * 00006 * Console configuration 00007 * 00008 * These options specify the console types that Etherboot will use for 00009 * interaction with the user. 00010 * 00011 */ 00012 00013 FILE_LICENCE ( GPL2_OR_LATER ); 00014 00015 #include <config/defaults.h> 00016 00017 //#define CONSOLE_PCBIOS /* Default BIOS console */ 00018 //#define CONSOLE_SERIAL /* Serial port */ 00019 //#define CONSOLE_DIRECT_VGA /* Direct access to VGA card */ 00020 //#define CONSOLE_BTEXT /* Who knows what this does? */ 00021 //#define CONSOLE_PC_KBD /* Direct access to PC keyboard */ 00022 00023 #include <config/local/console.h> 00024 00025 #endif /* CONFIG_CONSOLE_H */
1.5.7.1