diff options
author | Angel Pons <th3fanbus@gmail.com> | 2020-12-05 18:35:22 +0100 |
---|---|---|
committer | Hung-Te Lin <hungte@chromium.org> | 2020-12-11 07:33:22 +0000 |
commit | 520003a55898da95160ebf6154076a8e42d48a2c (patch) | |
tree | 2a44c30ff7fd5ce71a292494266f1bb55c8b2267 /src/device | |
parent | a7db40eae5b88d62f71487cf7e095e76d599420e (diff) |
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>
Diffstat (limited to 'src/device')
-rw-r--r-- | src/device/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/Makefile.inc b/src/device/Makefile.inc index f5e2c685be..bb125afb8f 100644 --- a/src/device/Makefile.inc +++ b/src/device/Makefile.inc @@ -8,7 +8,7 @@ ramstage-$(CONFIG_ARCH_RAMSTAGE_X86_64) += pnp_device.c 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 |