History log of /openbmc/ipmitool/ (Results 401 – 425 of 1757)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
e30f372609-Jun-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 143 - Reversed 'channel authcap' capabilities

Commit fixes reversed IPMIv1.5/2.0 'channel authcap' capabilities
in 'include/ipmitool/ipmi_channel.h'.

Commit for Rob Swindell

63ba1cc602-Jun-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3587318 - "dcmi discover" is not DCMI 1.5 compatible

Command "dcmi discover" fails with ``ERROR! This command is not available on this
platform'' unless the DCMI implementation advertises DCMI 1

ID: 3587318 - "dcmi discover" is not DCMI 1.5 compatible

Command "dcmi discover" fails with ``ERROR! This command is not available on this
platform'' unless the DCMI implementation advertises DCMI 1.0 or 1.1 conformance.
This means command will fail DCMI 1.5 capable hardware. Commit fixes this issue.

Commit for Rob Swindell

show more ...

384618d102-Jun-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3612237 - If DCMI command fails, incorrect completion code is printed

If any DCMI command fails, the function chk_rsp() in ipmi_dcmi.c displays the
incorrect byte as the completion code.

$ ipmi

ID: 3612237 - If DCMI command fails, incorrect completion code is printed

If any DCMI command fails, the function chk_rsp() in ipmi_dcmi.c displays the
incorrect byte as the completion code.

$ ipmitool dcmi power activate
DCMI request failed because: Unspecified error (dc)

The "dc" value printed is actually the "Group extension identification" byte
which *always* has the value 0xdc for DCMI responses.

Commit for Rob Swindell

show more ...

b0020e0b02-Jun-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3612382 - Typos in 'dcmi' help output

Commit fixes typos in DCMI help output.

Commit for Rob Swindell

7a861ffb02-Jun-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3612371 - Typo in impi_sel debug output

IANA is decimal, so don't prefix it with '0x'.

Commit for Rob Swindell

811da13002-Jun-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3612372 - Recognize Broadcom IANA number and BCM5725 product

Commit adds BCM IANA and BCM5725 product number.

Commit for Rob Swindell

8489426a02-Jun-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3608003 - 'lib/ipmi_fru.c' - atol() should be replaced with str2*()

Commit replaces atol() calls with str2int() ones in 'lib/ipmi_fru.c'.

dbe514a502-Jun-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3613042 - add missing Entity IDs

Commit adds missing Entity IDs as defined by 43.14 Entity IDs, IPMI
Specification, V2.0, Markup for Addendum, Rev. 4.

Reported-by: Ulrich Windl

d5ab51f228-May-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3611905 - Direct Serial Basic/Terminal Mode Interface drivers

The patch adds support for direct serial interface drivers (Terminal and Basic
mode).
Despite both drivers implement single and doub

ID: 3611905 - Direct Serial Basic/Terminal Mode Interface drivers

The patch adds support for direct serial interface drivers (Terminal and Basic
mode).
Despite both drivers implement single and double bridging, it doesn't work at
the moment. Making this functionality to work depends on outcome of
ID#3611226(?).

Commit for Dmitry Bazhenov

show more ...

0cea01e427-May-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3611254 - OEM handle for Intel 82751 in SPT mode

Intel 82751 MAC has several deviations in its RMCP+ implementation while working
in the super pass-through mode.
This patch adds a OEM handle whi

ID: 3611254 - OEM handle for Intel 82751 in SPT mode

Intel 82751 MAC has several deviations in its RMCP+ implementation while working
in the super pass-through mode.
This patch adds a OEM handle which allows IPMItool succesfully interract with
boards equipped with this NIC.

Commit for Dmitry Bazhenov

show more ...

38d7117922-May-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3613575 - memory leak - ipmi_password_file_read()

Commit fixes memory leak in ipmi_password_file_read() in 'lib/ipmi_main.c'.

cc48c43322-May-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3522740 - reading password from file is limited to 16byte passwords

Commit fixes switched values(const<->size) passed to memset().

51dd9cf122-May-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3613605 - 'lib/ipmi_main.c' - call free() on pointer to static data

getpass() and getpassphrase() library functions return pointer to a static
data array. When free() is called on such pointer,

ID: 3613605 - 'lib/ipmi_main.c' - call free() on pointer to static data

getpass() and getpassphrase() library functions return pointer to a static
data array. When free() is called on such pointer, it abnormally terminates
application.

Commit for Dmitry Bazhenov

show more ...

44247a8722-May-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3522740 - reading password from file is limited to 16byte passwords

Reading password from file is no longer limited to 16bytes.

Reported-by: Dune Idaho

d82a29d822-May-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3528308 - 'lib/ipmi_hpmfwupg.c' - possible int *flow

Commit replaces strtol() calls with str2uchar() ones in order to mitigate
possible *flow via user input.
Also, limits are applied to 'Compone

ID: 3528308 - 'lib/ipmi_hpmfwupg.c' - possible int *flow

Commit replaces strtol() calls with str2uchar() ones in order to mitigate
possible *flow via user input.
Also, limits are applied to 'Component ID' and 'Properties selector' now.

Reported-by: Dune Idaho

show more ...

c5324e8722-May-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3528371 - 'lib/ipmi_sensor.c' - possible int *flow

Commit replaces strtod() calls with str2double() ones in order to mitigate
possible *flow via user input.

Reported-by: Dune Idaho

a8f6341718-May-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3528310 - 'lib/ipmi_picmg.c' - possible int *flow

Commit replaces atoi() and strtoul() calls with wrappers in order to prevent
possible int *flow via user input.
Also, limits on user provided va

ID: 3528310 - 'lib/ipmi_picmg.c' - possible int *flow

Commit replaces atoi() and strtoul() calls with wrappers in order to prevent
possible int *flow via user input.
Also, limits on user provided values are applied wherever possible.

Reported-by: Dune Idaho

show more ...

7472986e18-May-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3528310 - add str2char(), move is_fru_id() into 'lib/helper.c'

Commit adds new function str2char() into 'lib/helper.c'. Also, function
is_fru_id() moves from 'lib/ipmi_fru.c' into 'lib/helper.c'

ID: 3528310 - add str2char(), move is_fru_id() into 'lib/helper.c'

Commit adds new function str2char() into 'lib/helper.c'. Also, function
is_fru_id() moves from 'lib/ipmi_fru.c' into 'lib/helper.c' in order to be
utilized by other modules.

show more ...

72dd3edd06-May-2013 Jim Mankovich <jmank@hp.com>

"Bridging fixes for PICMG Platforms. Interface is always opened prior to
first IPMI request. Addition of macro to determine necessity of sensor
bridging and PICMG target address discover. See ID:

"Bridging fixes for PICMG Platforms. Interface is always opened prior to
first IPMI request. Addition of macro to determine necessity of sensor
bridging and PICMG target address discover. See ID: 3611226"

show more ...

cf6740b326-Apr-2013 Jim Mankovich <jmank@hp.com>

Add missing newlines when cvs output is specified see ID 3611912 for details

14e26ac826-Apr-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3611253 - configure.in - do not override OS-default values for interfaces

Commit fixes bug where OS default values were over-ridden if the corresponding
enable/disable arguments weren't provided

ID: 3611253 - configure.in - do not override OS-default values for interfaces

Commit fixes bug where OS default values were over-ridden if the corresponding
enable/disable arguments weren't provided via command-line parameters.
Commit also changes IPMI shell default configuration setting from 'yes' to
'auto'.

Commit for Dmitry Bazhenov

show more ...

cee211da25-Apr-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3611253 - configure.in - fixed build for the newer autotool releases

Commit for Dmitry Bazhenov

3818c0d225-Apr-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3611253 - Don't print AUX info if IPMC returns 12byte Get Device ID response

Commit for Dmitry Bazhenov

ae05861b25-Apr-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3611253 - 'lib/ipmi_sel.c' - avoid reading of uninitialized data

Zero data before making request in order to avoid reading of uninitialized data
in ipmi_sel_add_entry().

Commit for Dmitry Bazhe

ID: 3611253 - 'lib/ipmi_sel.c' - avoid reading of uninitialized data

Zero data before making request in order to avoid reading of uninitialized data
in ipmi_sel_add_entry().

Commit for Dmitry Bazhenov

show more ...

c29cf4bc25-Apr-2013 Zdenek Styblik <zdenek.styblik@gmail.com>

ID: 3611303 - 'src/plugins/lan/lan.c' - error check is missing braces

Fixed a bug where connecting to a remote shelf manager via the lan
interface would always fail with:

``Activate Session error:

ID: 3611303 - 'src/plugins/lan/lan.c' - error check is missing braces

Fixed a bug where connecting to a remote shelf manager via the lan
interface would always fail with:

``Activate Session error: Session sequence out of range Error: Unable
to establish LAN session''

This is due to a bug introduced in get_random() by fix for ID#3600963 where
braces were missing from an error check.

Commit for Dan Gora

show more ...

1...<<11121314151617181920>>...71