diff options
author | Sean Rhodes <sean@starlabs.systems> | 2022-06-16 21:32:33 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-06-23 12:17:12 +0000 |
commit | 7ea7986963e15eeb84ebc70340c64017b3782866 (patch) | |
tree | 8b5105de7d6dae474878fb0c17cde5d5f171aeca | |
parent | 48f69da67b7db193bc1cacfd6c7f1a97553980a0 (diff) |
payloads/tianocore: Show build options
Show the build options that are passed to edk2 in one clear block.
Signed-off-by: Sean Rhodes <sean@starlabs.systems>
Change-Id: I917a8c1d3ac8f2a223e584fec10689679835630c
Reviewed-on: https://review.coreboot.org/c/coreboot/+/65184
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rw-r--r-- | payloads/external/tianocore/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/payloads/external/tianocore/Makefile b/payloads/external/tianocore/Makefile index da61470a17..bcadcb277e 100644 --- a/payloads/external/tianocore/Makefile +++ b/payloads/external/tianocore/Makefile @@ -126,8 +126,18 @@ checktools: ( echo " Not found."; echo "Error: Please install nasm."; exit 1 ) build: update checktools + echo " ##### $(project_name) Build Summary #####" + echo " Repository: $(CONFIG_TIANOCORE_REPOSITORY)" + echo " Branch: $(CONFIG_TIANOCORE_TAG_OR_REV)" + echo " $(BUILD_STR)" | \ + sed 's/-/\n /g' | sort | sed \ + -e 's/a /Architecture: /g' \ + -e 's/b /Release: /g' \ + -e 's/D /Option: /g' \ + -e 's/p /Payload: /g' \ + -e 's/q /Build: Quiet/' \ + -e 's/t /Toolchain: /' unset CC; $(MAKE) -C $(project_dir)/BaseTools 2>&1 - echo " build $(project_name) $(CONFIG_TIANOCORE_TAG_OR_REV)" if [ -n "$(CONFIG_TIANOCORE_BOOTSPLASH_FILE)" ]; then \ echo " Copying custom bootsplash image"; \ case "$(CONFIG_TIANOCORE_BOOTSPLASH_FILE)" in \ |