aboutsummaryrefslogtreecommitdiff
path: root/util/superiotool/Makefile
diff options
context:
space:
mode:
authorDerek Waldner <derek.waldner.os@gmail.com>2016-04-14 12:13:48 -0500
committerMartin Roth <martinroth@google.com>2016-04-16 02:00:38 +0200
commit3b42119237e7b0ff74f6f56cbb6aa9e32ec286fc (patch)
treea6aeff373c5347035b61c16246c577c98d869b42 /util/superiotool/Makefile
parent433e8d272d1f1b3f6daaa89add5a886e348f29ea (diff)
util/superiotool: Add initial support for Exar XR28V384.
Datasheet https://www.exar.com/content/document.ashx?id=21368 Add support for Exar chip used on a custom board that was designed to connect to the Olive Hill Plus development platform. The register dump was verified on the Olive Hill Plus platform. Change-Id: Ibd3e13eefb706bd99b6e5b38634f6855b39848ab Signed-off-by: Derek Waldner <derek.waldner.os@gmail.com> Reviewed-on: https://review.coreboot.org/14367 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util/superiotool/Makefile')
-rw-r--r--util/superiotool/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/superiotool/Makefile b/util/superiotool/Makefile
index 1cd098f55d..f6d9685585 100644
--- a/util/superiotool/Makefile
+++ b/util/superiotool/Makefile
@@ -28,8 +28,8 @@ CFLAGS += -O2 -Wall -Wstrict-prototypes -Wundef -Wstrict-aliasing \
-Werror-implicit-function-declaration -ansi -pedantic $(VERSION)
LDFLAGS += -lz
-OBJS = superiotool.o serverengines.o ali.o fintek.o ite.o nsc.o nuvoton.o \
- smsc.o winbond.o infineon.o
+OBJS = superiotool.o serverengines.o ali.o exar.o fintek.o ite.o nsc.o \
+ nuvoton.o smsc.o winbond.o infineon.o
OS_ARCH = $(shell uname)
ifeq ($(OS_ARCH), Darwin)