summaryrefslogtreecommitdiffstats
path: root/Makefile.inc
diff options
context:
space:
mode:
authorFrans Hendriks <fhendriks@eltan.com>2022-03-31 09:39:13 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-04-08 14:44:31 +0000
commita02b77a96ba129fdb2640e022c6d64f179526319 (patch)
tree7936f79c91c8222f018adbdae6eed58797f8d8af /Makefile.inc
parentf2234422e957a042fb15f4fb3b8ea68940dc82c6 (diff)
downloadcoreboot-a02b77a96ba129fdb2640e022c6d64f179526319.tar.gz
coreboot-a02b77a96ba129fdb2640e022c6d64f179526319.tar.bz2
coreboot-a02b77a96ba129fdb2640e022c6d64f179526319.zip
IASL: Correct warning message for IASL missing dependency
Warning for _SRS includes _SRS. Warning for _DIS includes must have _SRS twice. Remove requirement _SRS for _SRS is present. Removed second _SRS for _DIS is present. BUG=N/A TEST=Verify correct message on built of facebook FBG1701 Change-Id: I1be740354b159e931e41323aef14e160cc09af19 Signed-off-by: Frans Hendriks <fhendriks@eltan.com>ยด Reviewed-on: https://review.coreboot.org/c/coreboot/+/63250 Reviewed-by: Erik van den Bogaert <ebogaert@eltan.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'Makefile.inc')
-rw-r--r--Makefile.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.inc b/Makefile.inc
index f746ef920a27..6b1c45cf57a1 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -277,8 +277,8 @@ ifeq ($(CONFIG_IGNORE_IASL_MISSING_DEPENDENCY),y)
build_complete::
printf "*** WARNING: The ASL code for this platform is incomplete. Please fix it. ***\n"
printf "*** If _PRS is present, must have _CRS and _SRS ***\n"
- printf "*** If _SRS is present, must have _PRS, _CRS, and _SRS ***\n"
- printf "*** If _DIS is present, must have _SRS, _PRS, _CRS, and _SRS ***\n"
+ printf "*** If _SRS is present, must have _PRS and _CRS ***\n"
+ printf "*** If _DIS is present, must have _SRS, _PRS and _CRS ***\n"
endif
IGNORED_IASL_WARNINGS = $(addprefix -vw , $(IASL_WARNINGS_LIST))