summaryrefslogtreecommitdiffstats
path: root/payloads/Kconfig
diff options
context:
space:
mode:
authorMartin Roth <martinroth@google.com>2016-04-26 09:51:41 -0600
committerMartin Roth <martinroth@google.com>2016-04-27 19:55:40 +0200
commit4005d9b2e42d6d8e70e9fb4b88002b3a69d20bca (patch)
treec7ab4736209fe92fe5b0a17d4e9f36da97dad3bb /payloads/Kconfig
parent4793ec3ea18b099efab7d8acf97e0063e0f577b7 (diff)
downloadcoreboot-4005d9b2e42d6d8e70e9fb4b88002b3a69d20bca.tar.gz
coreboot-4005d9b2e42d6d8e70e9fb4b88002b3a69d20bca.tar.bz2
coreboot-4005d9b2e42d6d8e70e9fb4b88002b3a69d20bca.zip
payloads: Add a stable version of Memtest86+ for reproducibility
Memtest86+ was pulling origin/master which will change over time. This adds a commit-id as a stable version to allow it to be reproducible. The other secondary payloads, coreinfo and nvramcui, do not need this because they are part of the coreboot repo and not fetched from an external source. Change-Id: I20c516010f76cf03342bd8883d0ee7ac5f8bc7e4 Signed-off-by: Martin Roth <martinroth@google.com> Reviewed-on: https://review.coreboot.org/14520 Tested-by: build bot (Jenkins) Reviewed-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net> Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'payloads/Kconfig')
-rw-r--r--payloads/Kconfig21
1 files changed, 21 insertions, 0 deletions
diff --git a/payloads/Kconfig b/payloads/Kconfig
index 00d5d88e9664..6c178d40a282 100644
--- a/payloads/Kconfig
+++ b/payloads/Kconfig
@@ -77,6 +77,27 @@ config MEMTEST_SECONDARY_PAYLOAD
Memtest86+ can be loaded as a secondary payload under SeaBIOS, GRUB,
or any other payload that can load additional payloads.
+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_MASTER
+ bool "Master"
+ 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.
+endchoice
+
config NVRAMCUI_SECONDARY_PAYLOAD
bool "Load nvramcui as a secondary payload"
default n