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>
This commit is contained in:
parent
48f69da67b
commit
7ea7986963
|
@ -126,8 +126,18 @@ checktools:
|
||||||
( echo " Not found."; echo "Error: Please install nasm."; exit 1 )
|
( echo " Not found."; echo "Error: Please install nasm."; exit 1 )
|
||||||
|
|
||||||
build: update checktools
|
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
|
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 \
|
if [ -n "$(CONFIG_TIANOCORE_BOOTSPLASH_FILE)" ]; then \
|
||||||
echo " Copying custom bootsplash image"; \
|
echo " Copying custom bootsplash image"; \
|
||||||
case "$(CONFIG_TIANOCORE_BOOTSPLASH_FILE)" in \
|
case "$(CONFIG_TIANOCORE_BOOTSPLASH_FILE)" in \
|
||||||
|
|
Loading…
Reference in New Issue