diff options
author | Sean Rhodes <sean@starlabs.systems> | 2022-09-16 09:18:38 +0100 |
---|---|---|
committer | Martin Roth <martin.roth@amd.corp-partner.google.com> | 2022-10-08 21:00:55 +0000 |
commit | 0d6dc48f019b0e97ba99bdfba3b96f2dfce37b07 (patch) | |
tree | a0fb027e152b673fd96169d24e654a5885668e4b /payloads/external/edk2/Kconfig | |
parent | 87bbeac2eb2587f0ede755d97122e5c2db140dad (diff) |
payloads/edk2: Add an option for verbose builds
Add EDK2_VERBOSE_BUILD which removes the `-q` and `-s` switches
so the build log becomes verbose.
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: Iaf1e96657f43edddfa4de0d3e00f3b24e7eb855b
Reviewed-on: https://review.coreboot.org/c/coreboot/+/67677
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Lean Sheng Tan <sheng.tan@9elements.com>
Diffstat (limited to 'payloads/external/edk2/Kconfig')
-rw-r--r-- | payloads/external/edk2/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/payloads/external/edk2/Kconfig b/payloads/external/edk2/Kconfig index d2a589bdbb..f753ad973e 100644 --- a/payloads/external/edk2/Kconfig +++ b/payloads/external/edk2/Kconfig @@ -78,6 +78,13 @@ config EDK2_RELEASE endchoice +config EDK2_VERBOSE_BUILD + bool "Output verbose build log for troubleshooting build failures" + help + Switch off the `-q` (quiet) and `-s` (silent) build arguments which makes the + build log extremely verbose. This can be used to troubleshoot failed builds + which are usually down to missing tools or toolchain. + config EDK2_ABOVE_4G_MEMORY bool "Enable above 4G memory" default n |