History log of /openbmc/ipmitool/ (Results 26 – 50 of 1757)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
a585af7e25-Jul-2015 Zdenek Styblik <stybla@turnovfree.net>

ID:365 - Fix for ipmitool crash when using serial-terminal interface

Negative value returned by serial_read_line() function was not properly
recognized, since the storage type was unsigned. This cau

ID:365 - Fix for ipmitool crash when using serial-terminal interface

Negative value returned by serial_read_line() function was not properly
recognized, since the storage type was unsigned. This caused ipmitool crash in
some sutuations. This patch fixes the problem.

Commit for: Dmitry Bazhenov

show more ...

e845085025-Jul-2015 Zdenek Styblik <stybla@turnovfree.net>

ID:364 - Fix for serial-basic interface bridging

Response matching for bridged serial-basic interface request is broken.
This patch fixes the problem.

Commit for: Dmitry Bazhenov

2d79e69f25-Jul-2015 Zdenek Styblik <stybla@turnovfree.net>

Merge commit '2f5789750183d4ef8be125b8cb32019441dd0530'

Return codes of functions should be either used or evaluated - always. This
merge is necessary for shell scripting to, eg. signal there was an

Merge commit '2f5789750183d4ef8be125b8cb32019441dd0530'

Return codes of functions should be either used or evaluated - always. This
merge is necessary for shell scripting to, eg. signal there was an error during
execution.

show more ...

259500e121-Jul-2015 Pat Donlin <pjd@sgi.com>

ID: 380 raw commands override retry and timeout values

Remove the hard coded override for retry and timeout in ipmi_master_write_read

70099a3c21-Jul-2015 Pat Donlin <pjd@sgi.com>

ID: 380 - raw commands override retry and timeout values

Correct compiler warnings in ipmi_raw.c

82f6175d07-May-2014 Charles Rose <charles_rose@dell.com>

ID:381 - Script to log installation status as SEL events

This script helps with logging OS install status to BMC as SEL
events.

Signed-off-by: Charles Rose <charles_rose@dell.com>

d12b3b4826-Mar-2015 Thomas D <whissi@whissi.de>

Output pidfile only in verbose mode

ace0e64626-Mar-2015 Thomas D <whissi@whissi.de>

Don't output pidfile before parsing command line arguments

eb54136711-Mar-2015 Zdenek Styblik <stybla@turnovfree.net>

ID:319 - Interface safe re-open

Currently, interface-management code in the ipmitool does not allow safe
interface re-opening (i.e. closing and opening again). It is because the session
is allocated

ID:319 - Interface safe re-open

Currently, interface-management code in the ipmitool does not allow safe
interface re-opening (i.e. closing and opening again). It is because the session
is allocated in the interface setup callback while is freed in the close
callback. So, normal re-opening of the interface, which can be required for
example durng the HPM.1 upgrade, leads to segmentation fault. That's why in the
ipmi_hpmfwupg.c instead of normal closing interface, directly access the
interface data for subsequent re-opening.

Commit for Dmitry Bazhenov

show more ...

9caa78be16-Feb-2015 Parthasarathy Bhuvaragan <parthasarathy.xx.bhuvaragan@ericsson.com>

ID:371 - add ericsson oem

Change-Id: I4fa230b2388e83ae0bc560539675d4dd8783a33e
Signed-off-by: Parthasarathy Bhuvaragan <parthasarathy.xx.bhuvaragan@ericsson.com>

925a2fe516-Feb-2015 Parthasarathy Bhuvaragan <parthasarathy.xx.bhuvaragan@ericsson.com>

ID:370 - add anonymous union support in CFLAGS for older gcc

In older GCC versions when an element in an anonymous unions/structures are
addressed by name, gcc must use -fms-extensions.

Change-Id:

ID:370 - add anonymous union support in CFLAGS for older gcc

In older GCC versions when an element in an anonymous unions/structures are
addressed by name, gcc must use -fms-extensions.

Change-Id: Id80617ad9336c7a02fbe613b58e3f337fa4baeee
Signed-off-by: Parthasarathy Bhuvaragan <parthasarathy.xx.bhuvaragan@ericsson.com>

show more ...

531569ec17-Feb-2015 Zdenek Styblik <stybla@turnovfree.net>

ID:373 - Fix compilation of IMB on Windows

Commit fixes compilation of IMB driver under Cygwin.
* don't redefine PAGESIZE if defined already
* fix missing include of <asm/socket.h> - required by IO

ID:373 - Fix compilation of IMB on Windows

Commit fixes compilation of IMB driver under Cygwin.
* don't redefine PAGESIZE if defined already
* fix missing include of <asm/socket.h> - required by IO calls

show more ...

ce86165806-Feb-2015 Pat Donlin <pjd@sgi.com>

Node Manager Feature, correct 1268194 missing break.

f1c6118c05-Feb-2015 Zdenek Styblik <stybla@turnovfree.net>

ID:320 - Add VITA 46.11 support

Commit adds support for VITA 46.11 by Dmitry Bazhenov.

d5c2e97605-Feb-2015 Zdenek Styblik <stybla@turnovfree.net>

ID:355 - remove unused variables from ipmi_dcmi.c

I'd swear I've already removed those, hmm.

7a85462305-Feb-2015 Pat Donlin <pjd@sgi.com>

ID:363 - fix Coverity issues in NM implementation

Commit fixes issues pointed out by Coverity.

fd5fdc5904-Feb-2015 Pat Donlin <pjd@sgi.com>

ID:363 - Node Manager feature patch.

4725cfd603-Feb-2015 Zdenek Styblik <stybla@turnovfree.net>

Hook ipmi_set_alert_enable() to _ipmi_*()

Commit hooks ipmi_set_alert_enable() to _ipmi_*() functions and is sort of
rewrite of that function with the same functionality.

5a30d18a03-Feb-2015 Zdenek Styblik <stybla@turnovfree.net>

_ipmi_set_channel_access() - zero-out variable data before use

11bbf18303-Feb-2015 Zdenek Styblik <stybla@turnovfree.net>

Rewrite ipmi_set_channel_access()

Commit is a rewrite of ipmi_set_channel_access(). Function utilizes _ipmi_*()
functions now in order to avoid code repetition. Other than that, functionality
should

Rewrite ipmi_set_channel_access()

Commit is a rewrite of ipmi_set_channel_access(). Function utilizes _ipmi_*()
functions now in order to avoid code repetition. Other than that, functionality
should remain the same.

show more ...

026a8b6f03-Feb-2015 Zdenek Styblik <stybla@turnovfree.net>

Add _ipmi_set_channel_access() function

Commit adds _ipmi_set_channel_access() function which in implementation of
(22.22) Set Channel Access Command.

410606e830-Jan-2015 Zdenek Styblik <stybla@turnovfree.net>

Hook ipmi_set_user_access() to _ipmi_set_user_access()

Commit hooks ipmi_set_user_access() to _ipmi_set_user_access() and removes
duplicate code.

8081427530-Jan-2015 Zdenek Styblik <stybla@turnovfree.net>

_ipmi_set_user_password() - fix missing intf parameter in documentation

8f1f31cf30-Jan-2015 Zdenek Styblik <stybla@turnovfree.net>

Remove ipmi_user_set_password()

Commit removes ipmi_user_set_password() as it's not being used anywhere.

90e2134430-Jan-2015 Zdenek Styblik <stybla@turnovfree.net>

Hook ipmi_lan_set_password() to _ipmi_set_user_password()

Commit hooks ipmi_lan_set_password() to _ipmi_set_user_password() in order to
get rid off code duplication.

12345678910>>...71