Sean Rhodes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/60794 )
Change subject: payloads/tianocore: Don't specify default values ......................................................................
payloads/tianocore: Don't specify default values
The default value for ABOVE_4G_MEMORY is TRUE, so there is no need to specify it until it's being changed.
Signed-off-by: Sean Rhodes sean@starlabs.systems Change-Id: I8f1d9312b2501c06f7d6028dfd3a8dceb08fdc01 --- M payloads/external/tianocore/Makefile 1 file changed, 1 insertion(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/94/60794/1
diff --git a/payloads/external/tianocore/Makefile b/payloads/external/tianocore/Makefile index 33b2a27..e45455d 100644 --- a/payloads/external/tianocore/Makefile +++ b/payloads/external/tianocore/Makefile @@ -40,9 +40,7 @@ CBMEM=-D USE_CBMEM_FOR_CONSOLE=TRUE endif
-ifeq ($(CONFIG_TIANOCORE_ABOVE_4G_MEMORY),y) -4G=-D ABOVE_4G_MEMORY=TRUE -else +ifneq ($(CONFIG_TIANOCORE_ABOVE_4G_MEMORY),y) 4G=-D ABOVE_4G_MEMORY=FALSE endif