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 818B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Console configuration suitable for use in public cloud
  3. * environments, or any environment where direct console access is not
  4. * available.
  5. *
  6. */
  7. /* Log to syslog(s) server
  8. *
  9. * The syslog server to be used must be specified via e.g.
  10. * "set syslog 192.168.0.1".
  11. */
  12. #define CONSOLE_SYSLOG
  13. #define CONSOLE_SYSLOGS
  14. /* Log to serial port
  15. *
  16. * Note that the serial port output from an AWS EC2 virtual machine is
  17. * generally available (as the "System Log") only after the instance
  18. * has been stopped.
  19. */
  20. #define CONSOLE_SERIAL
  21. /* Log to partition on local disk
  22. *
  23. * If all other log mechanisms fail then the VM boot disk containing
  24. * the iPXE image can be detached and attached to another machine in
  25. * the same cloud, allowing the log to be retrieved from the log
  26. * partition.
  27. */
  28. #define CONSOLE_INT13