ron minnich has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/81544?usp=email )
Change subject: Makefile.mk: make the overlapped error message more informative ......................................................................
Makefile.mk: make the overlapped error message more informative
Currently, if something is overlapped, you get this: ERROR: Ramstage region _ramstage overlapped by: fallback/payload fallback/opensbi
This change prints out the start and end of the sections.
Change-Id: Ica8c05b63ed9bbd28e2d3daa4dc7c2f9d8da3f55 Signed-off-by: Ronald G Minnich rminnich@gmail.com --- M Makefile.mk 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/44/81544/1
diff --git a/Makefile.mk b/Makefile.mk index bfdb7e3..3f39a6e 100644 --- a/Makefile.mk +++ b/Makefile.mk @@ -1388,7 +1388,7 @@ if [ -z $$rstart ]; then rstart=$$(($$y)) ; continue ; fi ; \ rend=$$(($$y)) ; \ if [ $$pstart -lt $$rend -a $$rstart -lt $$pend ]; then \ - echo "ERROR: Ramstage region _$$rname overlapped by:" \ + echo "ERROR: Ramstage region _$$rname@($$rstart,$$rend) overlapped by($$pstart,$$pend):" \ $(check-ramstage-overlap-files) ; \ exit 1 ; \ fi ; \