aboutsummaryrefslogtreecommitdiff
path: root/util/ectool/Makefile
diff options
context:
space:
mode:
authorSteven Dee <i@wholezero.org>2017-01-29 14:52:56 -0500
committerPatrick Georgi <pgeorgi@google.com>2017-02-02 15:29:10 +0100
commit3236f7be093b3dfed606d6a6b4e81743ecfe0c5c (patch)
tree76f0d7545eeece3ebdcf9a57369b5b54cecffc08 /util/ectool/Makefile
parent092db95742fe6e94b391d32d151868f70c5cab84 (diff)
ectool: Support OpenBSD
Adds checks for OpenBSD in all the places that were already checking for NetBSD. This fixes e.g.: ec.c:21:20: error: sys/io.h: No such file or directory which was caused by defaulting to Linux. Also, OpenBSD calls its amd64 iopl amd64_iopl instead of x86_64_iopl. This change just defines iopl appropriately depending on the OS and architecture. TEST=Build on OpenBSD 6.0 or -current from 2017-01-25. Change-Id: If6d92a9850c15cd9f8e287cc4f963d3ff881f72c Signed-off-by: Steven Dee <i@wholezero.org> Reviewed-on: https://review.coreboot.org/18260 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'util/ectool/Makefile')
-rw-r--r--util/ectool/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/ectool/Makefile b/util/ectool/Makefile
index 8aa1415a56..234e931e4a 100644
--- a/util/ectool/Makefile
+++ b/util/ectool/Makefile
@@ -25,7 +25,7 @@ ifeq ($(shell uname -o 2>/dev/null), Cygwin)
LDFLAGS = -lioperm
endif
-ifeq ($(OS_ARCH), NetBSD)
+ifeq ($(OS_ARCH), $(filter $(OS_ARCH), NetBSD OpenBSD))
LDFLAGS = -l$(shell uname -p)
endif