|
From: Zdenek S. <st...@us...> - 2016-02-04 05:42:52
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "ipmitool".
The branch, master has been updated
via 65ea078bdf71475ce1123ba612c0eed79f5577b1 (commit)
via 89dbad1655e671b23ca6f29edf90438ef77114aa (commit)
from 9020b67347f46554009591ae91e4fa8875c65dfa (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 65ea078bdf71475ce1123ba612c0eed79f5577b1
Author: Zdenek Styblik <st...@tu...>
Date: Sun Jan 24 13:55:14 2016 +0100
ID:410 - Enable/disable USB interface by "auto"
Commit changes help text for USB interface to "auto" as its default value will
rely on pre-defined value in configure.ac, if no value is specified by user.
diff --git a/configure.ac b/configure.ac
index c068083..9f322a3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -202,9 +202,9 @@ fi
dnl enable IPMI USB interface
AC_ARG_ENABLE([intf-usb],
[AC_HELP_STRING([--enable-intf-usb],
- [enable IPMI USB interface [default=yes]])],
+ [enable IPMI USB interface [default=auto]])],
[xenable_intf_usb=$enableval],
- [xenable_intf_usb=yes])
+ [xenable_intf_usb=$xenable_intf_usb])
if test "x$xenable_intf_usb" = "xstatic" || test "x$xenable_intf_usb" = "xplugin"; then
xenable_intf_usb=yes
fi
commit 89dbad1655e671b23ca6f29edf90438ef77114aa
Author: Dmitry Bazhenov <baz...@gm...>
Date: Mon Jan 18 12:50:31 2016 +0500
ID:410 - Disable USB interface for Windows/Cygwin by default.
USB interface fails to be built under Windows/Cygwin.
This patch disables the feature if being built for Windows/Cygwin.
diff --git a/configure.ac b/configure.ac
index 1d74fcf..c068083 100644
--- a/configure.ac
+++ b/configure.ac
@@ -89,6 +89,7 @@ solaris*)
xenable_intf_open=no
xenable_intf_lipmi=no
xenable_intf_bmc=no
+ xenable_intf_usb=no
;;
*darwin*|aix*)
# disable the linux and solaris-specific interfaces
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
hooks/post-receive
--
ipmitool
|