2018-08-19 17:48:53 +02:00
|
|
|
if MEMTEST_SECONDARY_PAYLOAD
|
|
|
|
|
2022-11-07 19:33:58 +01:00
|
|
|
comment "Memtest86+"
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Memtest86+ 5/6"
|
|
|
|
|
|
|
|
config MEMTEST86PLUS_V6
|
|
|
|
bool "Memtest86+ V6"
|
|
|
|
|
|
|
|
config MEMTEST86PLUS_V5
|
|
|
|
bool "Memtest86+ V5"
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2018-08-19 17:48:53 +02:00
|
|
|
choice
|
2022-11-07 19:33:58 +01:00
|
|
|
prompt "Target architecture"
|
|
|
|
depends on MEMTEST86PLUS_V6
|
|
|
|
|
|
|
|
config MEMTEST86PLUS_ARCH_64
|
|
|
|
bool "64 bit"
|
|
|
|
|
|
|
|
config MEMTEST86PLUS_ARCH_32
|
|
|
|
bool "32 bit"
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
choice
|
|
|
|
prompt "Memtest86+ revision"
|
2018-08-19 17:48:53 +02:00
|
|
|
depends on MEMTEST_SECONDARY_PAYLOAD
|
|
|
|
|
|
|
|
config MEMTEST_STABLE
|
|
|
|
bool "Stable"
|
|
|
|
help
|
|
|
|
Stable Memtest86+ version.
|
|
|
|
|
|
|
|
For reproducible builds, this option must be selected.
|
2023-06-25 17:54:00 +02:00
|
|
|
config MEMTEST_MAIN
|
|
|
|
bool "Main"
|
2018-08-19 17:48:53 +02:00
|
|
|
help
|
|
|
|
Newest Memtest86+ version.
|
|
|
|
|
|
|
|
This option will fetch the newest version of the Memtest86+ code,
|
|
|
|
updating as new changes are committed. This makes the build
|
|
|
|
non-reproducible, as it can fetch different code each time.
|
2022-11-07 19:33:58 +01:00
|
|
|
|
2018-08-19 17:48:53 +02:00
|
|
|
config MEMTEST_REVISION
|
|
|
|
bool "git revision"
|
|
|
|
help
|
|
|
|
Select this option if you have a specific commit or branch
|
|
|
|
that you want to use as the revision from which to
|
2022-11-07 19:33:58 +01:00
|
|
|
build Memtest86+. Using a branch version makes the build
|
2018-08-19 17:48:53 +02:00
|
|
|
non-reproducible, as it can fetch different code each time.
|
|
|
|
|
|
|
|
You will be able to specify the name of a branch or a commit id
|
|
|
|
later.
|
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
|
|
|
config MEMTEST_REVISION_ID
|
|
|
|
string "Insert a commit's SHA-1 or a branch name"
|
|
|
|
depends on MEMTEST_REVISION
|
2023-06-25 17:54:00 +02:00
|
|
|
default "origin/main"
|
2018-08-19 17:48:53 +02:00
|
|
|
help
|
|
|
|
The commit's SHA-1 or branch name of the revision to use.
|
|
|
|
|
|
|
|
endif
|