nb/intel/sandybridge: Use SA devid to identify PC type
[coreboot2.git] / payloads / external / Memtest86Plus / Kconfig.secondary
blobd357399f090dc8192aa72fcee18fbaf0dcedc049
1 if MEMTEST_SECONDARY_PAYLOAD
3 comment "Memtest86+"
5 choice
6         prompt "Memtest86+ 5/6"
8 config MEMTEST86PLUS_V6
9         bool "Memtest86+ V6"
11 config MEMTEST86PLUS_V5
12         bool "Memtest86+ V5"
14 endchoice
16 choice
17         prompt "Target architecture"
18         depends on MEMTEST86PLUS_V6
20 config MEMTEST86PLUS_ARCH_64
21         bool "64 bit"
23 config MEMTEST86PLUS_ARCH_32
24         bool "32 bit"
26 endchoice
28 choice
29         prompt "Memtest86+ revision"
30         depends on MEMTEST_SECONDARY_PAYLOAD
32 config MEMTEST_STABLE
33         bool "Stable"
34         help
35           Stable Memtest86+ version.
37           For reproducible builds, this option must be selected.
38 config MEMTEST_MAIN
39         bool "Main"
40         help
41           Newest Memtest86+ version.
43           This option will fetch the newest version of the Memtest86+ code,
44           updating as new changes are committed.  This makes the build
45           non-reproducible, as it can fetch different code each time.
47 config MEMTEST_REVISION
48         bool "git revision"
49         help
50           Select this option if you have a specific commit or branch
51           that you want to use as the revision from which to
52           build Memtest86+. Using a branch version makes the build
53           non-reproducible, as it can fetch different code each time.
55           You will be able to specify the name of a branch or a commit id
56           later.
58 endchoice
60 config MEMTEST_REVISION_ID
61         string "Insert a commit's SHA-1 or a branch name"
62         depends on MEMTEST_REVISION
63         default "origin/main"
64         help
65            The commit's SHA-1 or branch name of the revision to use.
67 endif