Balaji Manigandan has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/34024 )
Change subject: site-local: Allow to read Makefile.inc w/o .config ......................................................................
site-local: Allow to read Makefile.inc w/o .config
Makefile.inc allows to extend site specific configurations list the make options irrespective of a .config
Change-Id: I7c968c773c368ea74689b9741c4c978c35110187 Signed-off-by: Balaji Manigandan B balaji.manigandan@intel.com --- M Makefile 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/24/34024/1
diff --git a/Makefile b/Makefile index 45b0bc5..dfc70e0 100644 --- a/Makefile +++ b/Makefile @@ -129,11 +129,12 @@ endif endif
+-include $(TOPLEVEL)/site-local/Makefile.inc + ifeq ($(NOCOMPILE),1) include $(TOPLEVEL)/Makefile.inc include $(TOPLEVEL)/payloads/Makefile.inc include $(TOPLEVEL)/util/testing/Makefile.inc --include $(TOPLEVEL)/site-local/Makefile.inc real-all: @echo "Error: Expected config file ($(DOTCONFIG)) not present." >&2 @echo "Please specify a config file or run 'make menuconfig' to" >&2
Balaji Manigandan has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34024 )
Change subject: site-local: Allow to read Makefile.inc w/o .config ......................................................................
Patch Set 1:
@Patrick, @Martin : could you please check this patch ?
Paul Menzel has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34024 )
Change subject: site-local: Allow to read Makefile.inc w/o .config ......................................................................
Patch Set 1: Code-Review+1
(1 comment)
https://review.coreboot.org/c/coreboot/+/34024/1//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/34024/1//COMMIT_MSG@9 PS1, Line 9: Makefile.inc allows to extend site specific configurations : list the make options irrespective of a .config Please add dot/periods at the end of sentences.
Hello Paul Menzel, build bot (Jenkins), Patrick Georgi, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/34024
to look at the new patch set (#2).
Change subject: site-local: Allow to read Makefile.inc w/o .config ......................................................................
site-local: Allow to read Makefile.inc w/o .config
Makefile.inc allows extending site-specific configurations. This change is to allow make utility to list supported options, irrespective of a .config file availability
Change-Id: I7c968c773c368ea74689b9741c4c978c35110187 Signed-off-by: Balaji Manigandan B balaji.manigandan@intel.com --- M Makefile 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/24/34024/2
Balaji Manigandan has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34024 )
Change subject: site-local: Allow to read Makefile.inc w/o .config ......................................................................
Patch Set 2:
(1 comment)
https://review.coreboot.org/c/coreboot/+/34024/1//COMMIT_MSG Commit Message:
https://review.coreboot.org/c/coreboot/+/34024/1//COMMIT_MSG@9 PS1, Line 9: Makefile.inc allows to extend site specific configurations : list the make options irrespective of a .config
Please add dot/periods at the end of sentences.
Done
Hello Paul Menzel, build bot (Jenkins), Patrick Georgi, Martin Roth,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/34024
to look at the new patch set (#3).
Change subject: site-local: Allow to read Makefile.inc w/o .config ......................................................................
site-local: Allow to read Makefile.inc w/o .config
Makefile.inc allows extending site-specific configurations. This change is to allow make utility to list supported options, irrespective of a .config file availability.
Change-Id: I7c968c773c368ea74689b9741c4c978c35110187 Signed-off-by: Balaji Manigandan B balaji.manigandan@intel.com --- M Makefile 1 file changed, 2 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/24/34024/3
Martin Roth has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34024 )
Change subject: site-local: Allow to read Makefile.inc w/o .config ......................................................................
Patch Set 3: Code-Review+2
Martin Roth has submitted this change and it was merged. ( https://review.coreboot.org/c/coreboot/+/34024 )
Change subject: site-local: Allow to read Makefile.inc w/o .config ......................................................................
site-local: Allow to read Makefile.inc w/o .config
Makefile.inc allows extending site-specific configurations. This change is to allow make utility to list supported options, irrespective of a .config file availability.
Change-Id: I7c968c773c368ea74689b9741c4c978c35110187 Signed-off-by: Balaji Manigandan B balaji.manigandan@intel.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/34024 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Martin Roth martinroth@google.com Reviewed-by: Paul Menzel paulepanter@users.sourceforge.net --- M Makefile 1 file changed, 2 insertions(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Martin Roth: Looks good to me, approved Paul Menzel: Looks good to me, but someone else must approve
diff --git a/Makefile b/Makefile index 45b0bc5..dfc70e0 100644 --- a/Makefile +++ b/Makefile @@ -129,11 +129,12 @@ endif endif
+-include $(TOPLEVEL)/site-local/Makefile.inc + ifeq ($(NOCOMPILE),1) include $(TOPLEVEL)/Makefile.inc include $(TOPLEVEL)/payloads/Makefile.inc include $(TOPLEVEL)/util/testing/Makefile.inc --include $(TOPLEVEL)/site-local/Makefile.inc real-all: @echo "Error: Expected config file ($(DOTCONFIG)) not present." >&2 @echo "Please specify a config file or run 'make menuconfig' to" >&2
Patrick Georgi has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34024 )
Change subject: site-local: Allow to read Makefile.inc w/o .config ......................................................................
Patch Set 4:
This leads to double evaluation of site-local/Makefile.inc in the NOCOMPILE==0 case: once here, once through subdirs-y.
What's the rationale for forcing it here as well instead of waiting for subdirs handling to kick in?
Angel Pons has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/34024 )
Change subject: site-local: Allow to read Makefile.inc w/o .config ......................................................................
Patch Set 4:
There is a revert change: CB:35786