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.

config.h 964B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * This file defines the configuration for Etherboot.
  3. *
  4. * The build system splits this file into several individual header
  5. * files of the form config/%.h, so that changing one option doesn't
  6. * necessitate a rebuild of every single object. For this reason, it
  7. * is important to maintain the strict formatting in this file.
  8. *
  9. */
  10. /* @BEGIN serial.h
  11. *
  12. * Serial port configuration
  13. *
  14. * These options affect the operation of the serial console. They
  15. * take effect only if the serial console is included using the
  16. * CONSOLE_SERIAL option.
  17. *
  18. */
  19. #define COMCONSOLE 0x3f8 /* I/O port address */
  20. /* Keep settings from a previous user of the serial port (e.g. lilo or
  21. * LinuxBIOS), ignoring COMSPEED, COMDATA, COMPARITY and COMSTOP.
  22. */
  23. #define COMPRESERVE 0
  24. #if ! COMPRESERVE
  25. #define COMSPEED 9600 /* Baud rate */
  26. #define COMDATA 8 /* Data bits */
  27. #define COMPARITY N /* Parity */
  28. #define COMSTOP 1 /* Stop bits */
  29. #endif
  30. /* @END serial.h */