diff options
Diffstat (limited to 'payloads/external/Memtest86Plus/Kconfig.secondary')
-rw-r--r-- | payloads/external/Memtest86Plus/Kconfig.secondary | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/payloads/external/Memtest86Plus/Kconfig.secondary b/payloads/external/Memtest86Plus/Kconfig.secondary index 98a0d06cb9..d357399f09 100644 --- a/payloads/external/Memtest86Plus/Kconfig.secondary +++ b/payloads/external/Memtest86Plus/Kconfig.secondary @@ -1,8 +1,32 @@ if MEMTEST_SECONDARY_PAYLOAD +comment "Memtest86+" + +choice + prompt "Memtest86+ 5/6" + +config MEMTEST86PLUS_V6 + bool "Memtest86+ V6" + +config MEMTEST86PLUS_V5 + bool "Memtest86+ V5" + +endchoice + choice - prompt "Memtest86+ version" - default MEMTEST_STABLE + 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" depends on MEMTEST_SECONDARY_PAYLOAD config MEMTEST_STABLE @@ -19,12 +43,13 @@ config MEMTEST_MAIN 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 + build Memtest86+. Using a branch version 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 |