Hung-Te Lin has submitted this change. ( https://review.coreboot.org/c/coreboot/+/48353 )
Change subject: device/Makefile.inc: Do not require hda_verb.c ......................................................................
device/Makefile.inc: Do not require hda_verb.c
A mainboard-level hda_verb.c may not exist for variant setups.
Change-Id: If2c92d9498cba7c084ef4c7065bc4ae83c7da761 Signed-off-by: Angel Pons th3fanbus@gmail.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/48353 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Christian Walter christian.walter@9elements.com --- M src/device/Makefile.inc 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Christian Walter: Looks good to me, approved
diff --git a/src/device/Makefile.inc b/src/device/Makefile.inc index f5e2c68..bb125af 100644 --- a/src/device/Makefile.inc +++ b/src/device/Makefile.inc @@ -8,7 +8,7 @@ ramstage-y += smbus_ops.c
ifeq ($(CONFIG_AZALIA_PLUGIN_SUPPORT),y) -ramstage-srcs += src/mainboard/$(MAINBOARDDIR)/hda_verb.c +ramstage-srcs += $(wildcard src/mainboard/$(MAINBOARDDIR)/hda_verb.c) endif
bootblock-y += device_const.c