Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

console.h 762B

12345678910111213141516171819202122232425262728293031
  1. #ifndef CONFIG_CONSOLE_H
  2. #define CONFIG_CONSOLE_H
  3. /** @file
  4. *
  5. * Console configuration
  6. *
  7. * These options specify the console types that Etherboot will use for
  8. * interaction with the user.
  9. *
  10. */
  11. FILE_LICENCE ( GPL2_OR_LATER );
  12. #include <config/defaults.h>
  13. //#define CONSOLE_PCBIOS /* Default BIOS console */
  14. //#define CONSOLE_SERIAL /* Serial port */
  15. //#define CONSOLE_DIRECT_VGA /* Direct access to VGA card */
  16. //#define CONSOLE_PC_KBD /* Direct access to PC keyboard */
  17. //#define CONSOLE_SYSLOG /* Syslog console */
  18. //#define CONSOLE_SYSLOGS /* Encrypted syslog console */
  19. //#define CONSOLE_VMWARE /* VMware logfile console */
  20. #define KEYBOARD_MAP us
  21. #define LOG_LEVEL LOG_NONE
  22. #include <config/local/console.h>
  23. #endif /* CONFIG_CONSOLE_H */