From 5c8de6a7253641bf1e4789bdc3b1e89ab741b1d1 Mon Sep 17 00:00:00 2001 From: Liming Sun Date: Fri, 3 Apr 2020 22:51:13 -0400 Subject: [PATCH] jtag/drivers/rshim: Disable the driver by default This is a follow-up change of commit 6d6a69d5 to disable it by default. The driver was introduced in 6d6a69d5 and enabled by default in order to run the jenkins build. Signed-off-by: Liming Sun Change-Id: I5c5fc6711b971b65dd5846a6163025879044ec40 Reviewed-on: http://openocd.zylin.com/5563 Tested-by: jenkins Reviewed-by: Antonio Borneo --- configure.ac | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 9c2f1d7eab..1c921fb1cf 100644 --- a/configure.ac +++ b/configure.ac @@ -222,11 +222,9 @@ AC_ARG_ENABLE([dummy], AS_HELP_STRING([--enable-dummy], [Enable building the dummy port driver]), [build_dummy=$enableval], [build_dummy=no]) -AS_CASE([$host_os], [linux*], [host_os_linux=yes], [host_os_linux=no]) - AC_ARG_ENABLE([rshim], AS_HELP_STRING([--enable-rshim], [Enable building the rshim driver]), - [build_rshim=$enableval], [build_rshim=$host_os_linux]) + [build_rshim=$enableval], [build_rshim=no]) m4_define([AC_ARG_ADAPTERS], [ m4_foreach([adapter], [$1], -- 2.30.2