diff options
author | Martin Roth <gaumless@gmail.com> | 2023-12-08 00:43:23 -0700 |
---|---|---|
committer | Felix Singer <service+coreboot-gerrit@felixsinger.de> | 2023-12-20 04:06:55 +0000 |
commit | 372503fba6e73349a68860823c129ceea224af82 (patch) | |
tree | c58b08a2daf184d321fc25acc71c38febf1e1fef /src/mainboard/google | |
parent | 0cec2351e2ad8c6575abff07c397f858747c90a1 (diff) |
treewide: Use show_notices target for warnings
This updates all warnings currently being printed under the files_added
and build_complete targets to the show_notices target.
Signed-off-by: Martin Roth <gaumless@gmail.com>
Change-Id: Ia14d790dd377f2892f047059b6d24e5b5c5ea823
Reviewed-on: https://review.coreboot.org/c/coreboot/+/79423
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/myst/Makefile.inc | 4 | ||||
-rw-r--r-- | src/mainboard/google/skyrim/Makefile.inc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/google/myst/Makefile.inc b/src/mainboard/google/myst/Makefile.inc index 59c11f46f1..4c5f80db8b 100644 --- a/src/mainboard/google/myst/Makefile.inc +++ b/src/mainboard/google/myst/Makefile.inc @@ -42,10 +42,10 @@ $(obj)/$(APCB_NAME).gen: $(SPD_SOURCES) \ --spd_sources $(SPD_SOURCES) else $(info SPD sources not found. Skipping APCB.) -files_added:: die_no_apcb +show_notices:: die_no_apcb endif else $(info APCB sources not found. Skipping APCB.) -files_added:: warn_no_apcb +show_notices:: warn_no_apcb endif diff --git a/src/mainboard/google/skyrim/Makefile.inc b/src/mainboard/google/skyrim/Makefile.inc index f4f9d68537..2b65b3f212 100644 --- a/src/mainboard/google/skyrim/Makefile.inc +++ b/src/mainboard/google/skyrim/Makefile.inc @@ -40,9 +40,9 @@ $(obj)/$(APCB_NAME).gen: $(SPD_SOURCES) \ --mem_type 'lp5' else $(info SPD sources not found. Skipping APCB.) -files_added:: die_no_apcb +show_notices:: die_no_apcb endif else $(info APCB sources not found. Skipping APCB.) -files_added:: die_no_apcb +show_notices:: die_no_apcb endif |