diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-12-28 18:53:14 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-01-03 18:08:48 +0000 |
commit | 4f73d930fe79547c8948ac6c52f86cf890c2e77f (patch) | |
tree | 399fcbb1962ac2fc093b32ec3f5e6fa556a26c70 /src/mainboard/lenovo/t430 | |
parent | 029f8eae7ecefab3178304651446755e00894c64 (diff) | |
download | coreboot-4f73d930fe79547c8948ac6c52f86cf890c2e77f.tar.xz |
src/mainboard: Use smm-$(CONFIG_HAVE_SMI_HANDLER)
Use smm-$(CONFIG_HAVE_SMI_HANDLER) instead of smm-y
Change-Id: I0f91bc3e6c8ab31d837ab89af62d700b35c1e01b
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/30485
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/mainboard/lenovo/t430')
-rw-r--r-- | src/mainboard/lenovo/t430/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/lenovo/t430/Makefile.inc b/src/mainboard/lenovo/t430/Makefile.inc index 558ab0a966..ada25f7136 100644 --- a/src/mainboard/lenovo/t430/Makefile.inc +++ b/src/mainboard/lenovo/t430/Makefile.inc @@ -1,5 +1,5 @@ romstage-y += romstage.c romstage-y += gpio.c -smm-y += smihandler.c +smm-$(CONFIG_HAVE_SMI_HANDLER) += smihandler.c ramstage-$(CONFIG_MAINBOARD_USE_LIBGFXINIT) += gma-mainboard.ads |