diff options
author | Patrick Georgi <pgeorgi@chromium.org> | 2018-06-08 19:33:21 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-06-08 18:01:22 +0000 |
commit | 78e09f96225d4c42d802a5d9b6c1da7eb9c6fc37 (patch) | |
tree | 5c6d6d7fdb61198f9f10b0e11c93822f71025121 | |
parent | 6985a7b7d6367b4aae3f5c03290f19feea7580f0 (diff) |
southbridge/intel/lynxpoint: add hard_reset to postcar
This fixes the following failure on certain google/peppy configs:
build/postcar/lib/reset.o: In function `__hard_reset':
/home/pgeorgi/coreboot/src/lib/reset.c:24: undefined reference to `do_hard_reset'
Change-Id: I448a8702a30108f1fc82179a766cbdd209336df7
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: https://review.coreboot.org/26986
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/southbridge/intel/lynxpoint/Makefile.inc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/southbridge/intel/lynxpoint/Makefile.inc b/src/southbridge/intel/lynxpoint/Makefile.inc index 6abdf4d191..7ea0d8bccc 100644 --- a/src/southbridge/intel/lynxpoint/Makefile.inc +++ b/src/southbridge/intel/lynxpoint/Makefile.inc @@ -55,4 +55,6 @@ ramstage-y += lp_gpio.c smm-$(CONFIG_HAVE_SMI_HANDLER) += lp_gpio.c endif +postcar-y += reset.c + endif |