config.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. * MemTest86+ V5 Specific code (GPL V2.0)
  3. * By Samuel DEMEULEMEESTER, sdemeule@memtest.org
  4. * http://www.canardpc.com - http://www.memtest.org
  5. * ------------------------------------------------
  6. * config.h - MemTest-86 Version 3.3
  7. *
  8. * Compile time configuration options
  9. *
  10. * Released under version 2 of the Gnu Public License.
  11. * By Chris Brady
  12. */
  13. /* CONSERVATIVE_SMP - If set to 0, SMP will be enabled by default */
  14. /* Might be enabled in future revision after extensive testing */
  15. /* In all cases, SMP is disabled by defaut on server platform */
  16. #define CONSERVATIVE_SMP 1
  17. /* BEEP_MODE - Beep on error. Default off, Change to 1 to enable */
  18. #define BEEP_MODE 1
  19. /* BEEP_END_NO_ERROR - Beep at end of each pass without error. Default off, Change to 1 to enable */
  20. #define BEEP_END_NO_ERROR 0
  21. /* PARITY_MEM - Enables support for reporting memory parity errors */
  22. /* Experimental, normally enabled */
  23. #define PARITY_MEM
  24. /* SERIAL_CONSOLE_DEFAULT - The default state of the serial console. */
  25. /* This is normally off since it slows down testing. Change to a 1 */
  26. /* to enable. */
  27. #define SERIAL_CONSOLE_DEFAULT 0
  28. /* SERIAL_TTY - The default serial port to use. 0=ttyS0, 1=ttyS1 */
  29. #define SERIAL_TTY 0
  30. /* SERIAL_BAUD_RATE - Baud rate for the serial console */
  31. #define SERIAL_BAUD_RATE 115200
  32. /* SCRN_DEBUG - extra check for SCREEN_BUFFER
  33. */
  34. /* #define SCRN_DEBUG */
  35. /* APM - Turns off APM at boot time to avoid blanking the screen */
  36. /* Normally enabled */
  37. #define APM_OFF
  38. /* USB_WAR - Enables a workaround for errors caused by BIOS USB keyboard */
  39. /* and mouse support*/
  40. /* Normally enabled */
  41. #define USB_WAR