blob: 98a0d06cb95bfc1b426e9a609812fc69c6bb12f2 [file] [log] [blame]
Stefan Taunera07366c2018-08-19 17:48:53 +02001if MEMTEST_SECONDARY_PAYLOAD
2
3choice
4 prompt "Memtest86+ version"
5 default MEMTEST_STABLE
6 depends on MEMTEST_SECONDARY_PAYLOAD
7
8config MEMTEST_STABLE
9 bool "Stable"
10 help
11 Stable Memtest86+ version.
12
13 For reproducible builds, this option must be selected.
Nicholas Chin981ef522023-06-25 09:54:00 -060014config MEMTEST_MAIN
15 bool "Main"
Stefan Taunera07366c2018-08-19 17:48:53 +020016 help
17 Newest Memtest86+ version.
18
19 This option will fetch the newest version of the Memtest86+ code,
20 updating as new changes are committed. This makes the build
21 non-reproducible, as it can fetch different code each time.
22config MEMTEST_REVISION
23 bool "git revision"
24 help
25 Select this option if you have a specific commit or branch
26 that you want to use as the revision from which to
27 build Memtest86+. This makes the build
28 non-reproducible, as it can fetch different code each time.
29
30 You will be able to specify the name of a branch or a commit id
31 later.
32
33endchoice
34
35config MEMTEST_REVISION_ID
36 string "Insert a commit's SHA-1 or a branch name"
37 depends on MEMTEST_REVISION
Nicholas Chin981ef522023-06-25 09:54:00 -060038 default "origin/main"
Stefan Taunera07366c2018-08-19 17:48:53 +020039 help
40 The commit's SHA-1 or branch name of the revision to use.
41
42endif