-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.h
87 lines (71 loc) · 2.49 KB
/
config.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
* MemTest86+ V5 Specific code (GPL V2.0)
* By Samuel DEMEULEMEESTER, [email protected]
* http://www.canardpc.com - http://www.memtest.org
* ------------------------------------------------
* config.h - MemTest-86 Version 3.3
*
* Compile time configuration options
*
* Released under version 2 of the Gnu Public License.
* By Chris Brady
*/
/* CONSERVATIVE_SMP - If set to 0, SMP will be enabled by default */
/* Might be enabled in future revision after extensive testing */
/* In all cases, SMP is disabled by defaut on server platform */
#ifndef CONSERVATIVE_SMP
#define CONSERVATIVE_SMP 1
#endif
/* BEEP_MODE - Beep on error. Default off, Change to 1 to enable */
#ifndef BEEP_MODE
#define BEEP_MODE 0
#endif
/* BEEP_END_NO_ERROR - Beep at end of each pass without error. Default off, Change to 1 to enable */
#ifndef BEEP_END_NO_ERROR
#define BEEP_END_NO_ERROR 0
#endif
/* PARITY_MEM - Enables support for reporting memory parity errors */
/* Experimental, normally enabled */
#ifndef PARITY_MEM
#define PARITY_MEM
#endif
/* SERIAL_CONSOLE_DEFAULT - The default state of the serial console. */
/* This is normally off since it slows down testing. Change to a 1 */
/* to enable. */
#ifndef SERIAL_CONSOLE_DEFAULT
#define SERIAL_CONSOLE_DEFAULT 0
#endif
/* SERIAL_TTY - The default serial port to use. 0=ttyS0, 1=ttyS1, 2=ttyS2, 3=ttyS3 */
#ifndef SERIAL_TTY
#define SERIAL_TTY 0
#endif
/* SERIAL_BAUD_RATE - Baud rate for the serial console */
#ifndef SERIAL_BAUD_RATE
#define SERIAL_BAUD_RATE 115200
#endif
/* SCRN_DEBUG - extra check for SCREEN_BUFFER
*/
/* #define SCRN_DEBUG */
/* APM - Turns off APM at boot time to avoid blanking the screen */
/* Normally enabled */
#define APM_OFF
/* USB_WAR - Enables a workaround for errors caused by BIOS USB keyboard */
/* and mouse support*/
/* Normally enabled */
#define USB_WAR
/* coreboot version number for memtest86+ - 3 characters. */
#define COREBOOT_VERSION_NUMBER_STRING "001"
/* CB_NOSPDD - disable SPD data reading and usage */
#ifndef CB_NOSPD
#define CB_NOSPD 0
#endif
/* The memtest version string with the coreboot badge (28 chars total)
* This is 25 characters plus the 3 character version number.
* "0123456789012345678901234567" */
#if !(CB_NOSPD)
#define MEMTEST_VERSION_STRING "Memtest86+ 5.01 coreboot " COREBOOT_VERSION_NUMBER_STRING
#else
#define MEMTEST_VERSION_STRING "Memtest86+ 5.01 CB_NOSPD " COREBOOT_VERSION_NUMBER_STRING
#endif
/* Location of flashing '+' symbol */
#define MEMTEST_PLUS_LOCATION 9