diff options
author | Felix Singer <felixsinger@posteo.net> | 2020-11-20 22:20:01 +0000 |
---|---|---|
committer | Michael Niewöhner <foss@mniewoehner.de> | 2020-11-23 12:01:40 +0000 |
commit | aef866be11a0d5d2a84070e51da2f25c40936ad3 (patch) | |
tree | ba6b841656891938169de88cba141cbd75cbb65d /src/mainboard/clevo | |
parent | 32608cf87cca4af57f3401f065b4c533401cbd7f (diff) |
mb/clevo/cml-u: Move hda_verb.c to mainboard's Makefile
Move hda_verb.c from the variant's Makefile to the mainboard's Makefile,
because every variant needs one.
Change-Id: Ia94813f68620abcff48de4fdb117466c91f6863c
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/47820
Reviewed-by: Michael Niewöhner <foss@mniewoehner.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/clevo')
-rw-r--r-- | src/mainboard/clevo/cml-u/Makefile.inc | 1 | ||||
-rw-r--r-- | src/mainboard/clevo/cml-u/variants/l140cu/Makefile.inc | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/clevo/cml-u/Makefile.inc b/src/mainboard/clevo/cml-u/Makefile.inc index 6a388f27a1..1d9ed2d7a6 100644 --- a/src/mainboard/clevo/cml-u/Makefile.inc +++ b/src/mainboard/clevo/cml-u/Makefile.inc @@ -1 +1,2 @@ +ramstage-y += variants/$(VARIANT_DIR)/hda_verb.c subdirs-y += variants/$(VARIANT_DIR) diff --git a/src/mainboard/clevo/cml-u/variants/l140cu/Makefile.inc b/src/mainboard/clevo/cml-u/variants/l140cu/Makefile.inc index bd3e899dc8..57ad0ca19f 100644 --- a/src/mainboard/clevo/cml-u/variants/l140cu/Makefile.inc +++ b/src/mainboard/clevo/cml-u/variants/l140cu/Makefile.inc @@ -1,5 +1,4 @@ bootblock-y += bootblock.c romstage-y += romstage.c ramstage-y += ramstage.c -ramstage-y += hda_verb.c SPD_SOURCES = samsung-K4AAG165WA-BCTD |