You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

console.h 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 iPXE will use for
  8. * interaction with the user.
  9. *
  10. */
  11. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  12. #include <config/defaults.h>
  13. /*
  14. * Default console types
  15. *
  16. * These are all enabled by default for the appropriate platforms.
  17. * You may disable them if needed.
  18. *
  19. */
  20. //#undef CONSOLE_PCBIOS /* Default BIOS console */
  21. //#undef CONSOLE_EFI /* Default EFI console */
  22. //#undef CONSOLE_LINUX /* Default Linux console */
  23. /*
  24. * Additional console types
  25. *
  26. * These are not enabled by default, but may be useful in your
  27. * environment.
  28. *
  29. */
  30. //#define CONSOLE_SERIAL /* Serial port console */
  31. //#define CONSOLE_FRAMEBUFFER /* Graphical framebuffer console */
  32. //#define CONSOLE_SYSLOG /* Syslog console */
  33. //#define CONSOLE_SYSLOGS /* Encrypted syslog console */
  34. //#define CONSOLE_VMWARE /* VMware logfile console */
  35. //#define CONSOLE_DEBUGCON /* Bochs/QEMU/KVM debug port console */
  36. //#define CONSOLE_INT13 /* INT13 disk log console */
  37. /*
  38. * Very obscure console types
  39. *
  40. * You almost certainly do not need to enable these.
  41. *
  42. */
  43. //#define CONSOLE_DIRECT_VGA /* Direct access to VGA card */
  44. //#define CONSOLE_PC_KBD /* Direct access to PC keyboard */
  45. /* Keyboard map (available maps in hci/keymap/) */
  46. #define KEYBOARD_MAP us
  47. /* Control which syslog() messages are generated.
  48. *
  49. * Note that this is not related in any way to CONSOLE_SYSLOG.
  50. */
  51. #define LOG_LEVEL LOG_NONE
  52. #include <config/named.h>
  53. #include NAMED_CONFIG(console.h)
  54. #include <config/local/console.h>
  55. #include LOCAL_NAMED_CONFIG(console.h)
  56. #endif /* CONFIG_CONSOLE_H */