Guest User

Untitled

a guest
Jul 17th, 2025
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. #ifndef CONFIG_CONSOLE_H
  2. #define CONFIG_CONSOLE_H
  3.  
  4. /** @file
  5. *
  6. * Console configuration
  7. *
  8. * These options specify the console types that iPXE will use for
  9. * interaction with the user.
  10. *
  11. */
  12.  
  13. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  14.  
  15. #include <config/defaults.h>
  16.  
  17. /*
  18. * Default console types
  19. *
  20. * These are all enabled by default for the appropriate platforms.
  21. * You may disable them if needed.
  22. *
  23. */
  24.  
  25. //#undef CONSOLE_PCBIOS /* Default BIOS console */
  26. //#undef CONSOLE_EFI /* Default EFI console */
  27. //#undef CONSOLE_LINUX /* Default Linux console */
  28.  
  29. /*
  30. * Additional console types
  31. *
  32. * These are not enabled by default, but may be useful in your
  33. * environment.
  34. *
  35. */
  36.  
  37. //#define CONSOLE_SERIAL /* Serial port console */
  38. #define CONSOLE_FRAMEBUFFER /* Graphical framebuffer console */
  39. //#define CONSOLE_SYSLOG /* Syslog console */
  40. //#define CONSOLE_SYSLOGS /* Encrypted syslog console */
  41. //#define CONSOLE_VMWARE /* VMware logfile console */
  42. //#define CONSOLE_DEBUGCON /* Bochs/QEMU/KVM debug port console */
  43. //#define CONSOLE_INT13 /* INT13 disk log console */
  44.  
  45. /*
  46. * Very obscure console types
  47. *
  48. * You almost certainly do not need to enable these.
  49. *
  50. */
  51.  
  52. //#define CONSOLE_DIRECT_VGA /* Direct access to VGA card */
  53. //#define CONSOLE_PC_KBD /* Direct access to PC keyboard */
  54.  
  55. /* Keyboard map (available maps in hci/keymap/) */
  56. #define KEYBOARD_MAP dynamic
  57.  
  58. /* Control which syslog() messages are generated.
  59. *
  60. * Note that this is not related in any way to CONSOLE_SYSLOG.
  61. */
  62. #define LOG_LEVEL LOG_NONE
  63.  
  64. #include <config/named.h>
  65. #include NAMED_CONFIG(console.h)
  66. #include <config/local/console.h>
  67. #include LOCAL_NAMED_CONFIG(console.h)
  68.  
  69. #endif /* CONFIG_CONSOLE_H */
  70.  
Advertisement
Add Comment
Please, Sign In to add comment