981ef52e87
It seems like the default branch for coreboot's Memtest86+ fork was renamed from 'master' to 'main'. TEST: Memtest builds correctly when selecting 'Main' for the Memtest86+ version option. Change-Id: I269249518019f5d0d12c57f1c14012abca86b48b Signed-off-by: Nicholas Chin <nic.c3.14@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/76100 Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
42 lines
1.1 KiB
Text
42 lines
1.1 KiB
Text
if MEMTEST_SECONDARY_PAYLOAD
|
|
|
|
choice
|
|
prompt "Memtest86+ version"
|
|
default MEMTEST_STABLE
|
|
depends on MEMTEST_SECONDARY_PAYLOAD
|
|
|
|
config MEMTEST_STABLE
|
|
bool "Stable"
|
|
help
|
|
Stable Memtest86+ version.
|
|
|
|
For reproducible builds, this option must be selected.
|
|
config MEMTEST_MAIN
|
|
bool "Main"
|
|
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.
|
|
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
|
|
build Memtest86+. This makes the build
|
|
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
|
|
default "origin/main"
|
|
help
|
|
The commit's SHA-1 or branch name of the revision to use.
|
|
|
|
endif
|