Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536
  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 CONSOLE_DEBUGCON /* Debug port console */
  21. //#define CONSOLE_VESAFB /* VESA framebuffer console */
  22. #define KEYBOARD_MAP us
  23. #define LOG_LEVEL LOG_NONE
  24. #include <config/named.h>
  25. #include NAMED_CONFIG(console.h)
  26. #include <config/local/console.h>
  27. #include LOCAL_NAMED_CONFIG(console.h)
  28. #endif /* CONFIG_CONSOLE_H */