mirror of
https://github.com/ipmitool/ipmitool.git
synced 2025-05-10 18:47:22 +00:00
Changelogs, versions preliminary updates to start getting ready for v1.8.11
This commit is contained in:
parent
b16dc1bf5a
commit
6c02a74a31
@ -1,3 +1,52 @@
|
|||||||
|
version 1.8.11-beta released 2009-02-06
|
||||||
|
* Fix new GCC compilation issues in regards to Packing
|
||||||
|
* Fix Tracker bug #1642710 - ipmi_kcs_drv being loaded/unloaded
|
||||||
|
for 2.4 kernel instead of ipmi_si_drv driver module
|
||||||
|
* New -y option added to allow specification of kg keys with
|
||||||
|
non-printable characters
|
||||||
|
* New -K option added to allow kgkey settings via environmental
|
||||||
|
variable IPMI_KGKEY
|
||||||
|
* Generic device support added for EEPROM with SDR Type 10h (gendev)
|
||||||
|
* Fix to lan-bridging for a double-bridging crash and to fix
|
||||||
|
an issue with bridging multiple concurrent requests and
|
||||||
|
erroneous handling of raw Send Message
|
||||||
|
* Lanplus fix for commands like 'sensor list' without the -t option
|
||||||
|
causing wrong double bridged requests of a sensor is located
|
||||||
|
on another satellite controller
|
||||||
|
* Fix lan and lanplus request list entry removal bugs
|
||||||
|
* Fix non-working issue when trying to send a bridge message with
|
||||||
|
Cipher 3
|
||||||
|
* Change bridge message handling to reuse command ipmi_lan_poll_recv
|
||||||
|
* Added PICMG 2.0 and 2.3 support
|
||||||
|
* Fix PICMG (ATCA) extension verification and reversal of BCD encoded
|
||||||
|
values for "major" and "minor" fields
|
||||||
|
* Add IANA support for Pigeon Point
|
||||||
|
* Add OEM SW/FW Record identification
|
||||||
|
* Fix to include I2C and LUN addresses so sensors are correctly managed
|
||||||
|
* Patch ID 1990560 to get readings from non-linear analog sensors
|
||||||
|
* Add support for SOL payload status command
|
||||||
|
* SOL set parameter range checking added
|
||||||
|
* Fixed SOL activate options usage
|
||||||
|
* Fixed crashes when parsing 'sol payload' and 'tsol' cmds (#216967)
|
||||||
|
* Added retries to SOL keepalive
|
||||||
|
* Fixed wrong mask values for Front Panel disable/enable status
|
||||||
|
* Add support to access fru internal use area
|
||||||
|
* Add support for new PICMG 3.0 R3.0 (March 24, 2008) to allow
|
||||||
|
blocks of data within the FRU storage area to be write
|
||||||
|
protected.
|
||||||
|
* Fix node reporting in GUID; Tracker bug #2339675
|
||||||
|
* Fix watchdog use/action print strings
|
||||||
|
* Fix endian bug in SDR add from file; Tracker bug #2075258
|
||||||
|
* Fix crash when dumping SDRs in a file and there's an error
|
||||||
|
getting an SDR; improve algorithm for optimal packet size
|
||||||
|
* Fix occasional SDR dump segfault; #1793076
|
||||||
|
* Allow ipmitool sel delete to accept hex list entry numbers
|
||||||
|
* Fix SEL total space reporting.
|
||||||
|
* Fix for garbage sensor threshold values reported when none
|
||||||
|
returned. Tracker Bug #863748
|
||||||
|
* ipmievd change to Monitor %used in SEL buffer and log warnings when
|
||||||
|
the buffer is 80% and 100% full
|
||||||
|
|
||||||
version 1.8.10 released 2008-08-08
|
version 1.8.10 released 2008-08-08
|
||||||
* Added support for BULL IANA number.
|
* Added support for BULL IANA number.
|
||||||
* Fixed contrib build so the oem_ibm_sel_map file gets included in
|
* Fixed contrib build so the oem_ibm_sel_map file gets included in
|
||||||
|
@ -3,7 +3,7 @@ dnl autoconf for ipmitool
|
|||||||
dnl
|
dnl
|
||||||
AC_INIT([src/ipmitool.c])
|
AC_INIT([src/ipmitool.c])
|
||||||
AC_CANONICAL_SYSTEM
|
AC_CANONICAL_SYSTEM
|
||||||
AM_INIT_AUTOMAKE([ipmitool], [1.8.10])
|
AM_INIT_AUTOMAKE([ipmitool], [1.8.11-beta])
|
||||||
AM_CONFIG_HEADER(config.h)
|
AM_CONFIG_HEADER(config.h)
|
||||||
AC_CONFIG_SRCDIR([src/ipmitool.c])
|
AC_CONFIG_SRCDIR([src/ipmitool.c])
|
||||||
AC_PREREQ(2.50)
|
AC_PREREQ(2.50)
|
||||||
|
@ -61,6 +61,54 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri Feb 06 2009 <pere@hungry.com> 1.8.11-beta
|
||||||
|
- Fix new GCC compilation issues in regards to Packing
|
||||||
|
- Fix Tracker bug #1642710 - ipmi_kcs_drv being loaded/unloaded
|
||||||
|
for 2.4 kernel instead of ipmi_si_drv driver module
|
||||||
|
- New -y option added to allow specification of kg keys with
|
||||||
|
non-printable characters
|
||||||
|
- New -K option added to allow kgkey settings via environmental
|
||||||
|
variable IPMI_KGKEY
|
||||||
|
- Generic device support added for EEPROM with SDR Type 10h (gendev)
|
||||||
|
- Fix to lan-bridging for a double-bridging crash and to fix
|
||||||
|
an issue with bridging multiple concurrent requests and
|
||||||
|
erroneous handling of raw Send Message
|
||||||
|
- Lanplus fix for commands like 'sensor list' without the -t option
|
||||||
|
causing wrong double bridged requests of a sensor is located
|
||||||
|
on another satellite controller
|
||||||
|
- Fix lan and lanplus request list entry removal bugs
|
||||||
|
- Fix non-working issue when trying to send a bridge message with
|
||||||
|
Cipher 3
|
||||||
|
- Change bridge message handling to reuse command ipmi_lan_poll_recv
|
||||||
|
- Added PICMG 2.0 and 2.3 support
|
||||||
|
- Fix PICMG (ATCA) extension verification and reversal of BCD encoded
|
||||||
|
values for "major" and "minor" fields
|
||||||
|
- Add IANA support for Pigeon Point
|
||||||
|
- Add OEM SW/FW Record identification
|
||||||
|
- Fix to include I2C and LUN addresses so sensors are correctly managed
|
||||||
|
- Patch ID 1990560 to get readings from non-linear analog sensors
|
||||||
|
- Add support for SOL payload status command
|
||||||
|
- SOL set parameter range checking added
|
||||||
|
- Fixed SOL activate options usage
|
||||||
|
- Fixed crashes when parsing 'sol payload' and 'tsol' cmds (#216967)
|
||||||
|
- Added retries to SOL keepalive
|
||||||
|
- Fixed wrong mask values for Front Panel disable/enable status
|
||||||
|
- Add support to access fru internal use area
|
||||||
|
- Add support for new PICMG 3.0 R3.0 (March 24, 2008) to allow
|
||||||
|
blocks of data within the FRU storage area to be write protected.
|
||||||
|
- Fix node reporting in GUID; Tracker bug #2339675
|
||||||
|
- Fix watchdog use/action print strings
|
||||||
|
- Fix endian bug in SDR add from file; Tracker bug #2075258
|
||||||
|
- Fix crash when dumping SDRs in a file and there's an error
|
||||||
|
getting an SDR; improve algorithm for optimal packet size
|
||||||
|
- Fix occasional SDR dump segfault; #1793076
|
||||||
|
- Allow ipmitool sel delete to accept hex list entry numbers
|
||||||
|
- Fix SEL total space reporting.
|
||||||
|
- Fix for garbage sensor threshold values reported when none
|
||||||
|
returned. Tracker Bug #863748
|
||||||
|
- ipmievd change to Monitor %used in SEL buffer and log warnings when
|
||||||
|
the buffer is 80% and 100% full
|
||||||
|
|
||||||
* Fri Aug 08 2008 <pere@hungry.com> 1.8.10-1
|
* Fri Aug 08 2008 <pere@hungry.com> 1.8.10-1
|
||||||
- Added support for BULL IANA number.
|
- Added support for BULL IANA number.
|
||||||
- Fixed contrib build so the oem_ibm_sel_map file gets included in rpm
|
- Fixed contrib build so the oem_ibm_sel_map file gets included in rpm
|
||||||
|
@ -1,3 +1,54 @@
|
|||||||
|
version (1.8.11-beta) unstable; urgency=low
|
||||||
|
* Fix new GCC compilation issues in regards to Packing
|
||||||
|
* Fix Tracker bug #1642710 - ipmi_kcs_drv being loaded/unloaded
|
||||||
|
for 2.4 kernel instead of ipmi_si_drv driver module
|
||||||
|
* New -y option added to allow specification of kg keys with
|
||||||
|
non-printable characters
|
||||||
|
* New -K option added to allow kgkey settings via environmental
|
||||||
|
variable IPMI_KGKEY
|
||||||
|
* Generic device support added for EEPROM with SDR Type 10h (gendev)
|
||||||
|
* Fix to lan-bridging for a double-bridging crash and to fix
|
||||||
|
an issue with bridging multiple concurrent requests and
|
||||||
|
erroneous handling of raw Send Message
|
||||||
|
* Lanplus fix for commands like 'sensor list' without the -t option
|
||||||
|
causing wrong double bridged requests of a sensor is located
|
||||||
|
on another satellite controller
|
||||||
|
* Fix lan and lanplus request list entry removal bugs
|
||||||
|
* Fix non-working issue when trying to send a bridge message with
|
||||||
|
Cipher 3
|
||||||
|
* Change bridge message handling to reuse command ipmi_lan_poll_recv
|
||||||
|
* Added PICMG 2.0 and 2.3 support
|
||||||
|
* Fix PICMG (ATCA) extension verification and reversal of BCD encoded
|
||||||
|
values for "major" and "minor" fields
|
||||||
|
* Add IANA support for Pigeon Point
|
||||||
|
* Add OEM SW/FW Record identification
|
||||||
|
* Fix to include I2C and LUN addresses so sensors are correctly managed
|
||||||
|
* Patch ID 1990560 to get readings from non-linear analog sensors
|
||||||
|
* Add support for SOL payload status command
|
||||||
|
* SOL set parameter range checking added
|
||||||
|
* Fixed SOL activate options usage
|
||||||
|
* Fixed crashes when parsing 'sol payload' and 'tsol' cmds (#216967)
|
||||||
|
* Added retries to SOL keepalive
|
||||||
|
* Fixed wrong mask values for Front Panel disable/enable status
|
||||||
|
* Add support to access fru internal use area
|
||||||
|
* Add support for new PICMG 3.0 R3.0 (March 24, 2008) to allow
|
||||||
|
blocks of data within the FRU storage area to be write
|
||||||
|
protected.
|
||||||
|
* Fix node reporting in GUID; Tracker bug #2339675
|
||||||
|
* Fix watchdog use/action print strings
|
||||||
|
* Fix endian bug in SDR add from file; Tracker bug #2075258
|
||||||
|
* Fix crash when dumping SDRs in a file and there's an error
|
||||||
|
getting an SDR; improve algorithm for optimal packet size
|
||||||
|
* Fix occasional SDR dump segfault; #1793076
|
||||||
|
* Allow ipmitool sel delete to accept hex list entry numbers
|
||||||
|
* Fix SEL total space reporting.
|
||||||
|
* Fix for garbage sensor threshold values reported when none
|
||||||
|
returned. Tracker Bug #863748
|
||||||
|
* ipmievd change to Monitor %used in SEL buffer and log warnings when
|
||||||
|
the buffer is 80% and 100% full
|
||||||
|
|
||||||
|
-- Petter Reinholdtsen <pere@debian.org> Fri, 6 Feb 2009 09:44:31 +0200
|
||||||
|
|
||||||
ipmitool (1.8.10) unstable; urgency=low
|
ipmitool (1.8.10) unstable; urgency=low
|
||||||
|
|
||||||
* New upstream version.
|
* New upstream version.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user