Accepting request 347885 from Base:System

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/347885
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/i2c-tools?expand=0&rev=30
This commit is contained in:
Stephan Kulow 2015-12-13 08:37:25 +00:00 committed by Git OBS Bridge
commit 8f0e350894
7 changed files with 17 additions and 29 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:14d4d7d60d1c12e43f2befe239c682a5c44c27682f153d4b58c1e392d2db1700
size 71789

Binary file not shown.

3
i2c-tools-3.1.2.tar.bz2 Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:db5e69f2e2a6e3aa2ecdfe6a5f490b149c504468770f58921c8c5b8a7860a441
size 72084

BIN
i2c-tools-3.1.2.tar.bz2.sig Normal file

Binary file not shown.

View File

@ -1,21 +0,0 @@
Subject: decode-dimms: Fix DDR3 extended temp range refresh rate decoding
Upstream: yes (r6250)
Based on a patch from Peter Missel. The meaning of byte 31, bit 1,
was inverted. Also, this bit is only meaningful if the extended
temperature range is supported (bit 0 is set.)
--- i2c-tools-3.1/eeprom/decode-dimms (revision 6231)
+++ i2c-tools-3.1/eeprom/decode-dimms (revision 6250)
@@ -1289,8 +1289,9 @@
printl("DLL-Off Mode supported?", ($bytes->[30] & 128) ? "Yes" : "No");
printl("Operating temperature range", sprintf "0-%d degrees C",
($bytes->[31] & 1) ? 95 : 85);
- printl("Refresh Rate in extended temp range",
- ($bytes->[31] & 2) ? "2X" : "1X");
+ printl_cond($bytes->[31] & 1,
+ "Refresh Rate in extended temp range",
+ ($bytes->[31] & 2) ? "1X" : "2X");
printl("Auto Self-Refresh?", ($bytes->[31] & 4) ? "Yes" : "No");
printl("On-Die Thermal Sensor readout?",
($bytes->[31] & 8) ? "Yes" : "No");

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Fri Nov 27 12:51:19 UTC 2015 - jdelvare@suse.com
- Update to version 3.1.2:
* Includes 1 backport we already had
- Removed obsolete i2c-tools-r6250-ddr3-fix-ext-temp-refresh.diff
(upstream)
-------------------------------------------------------------------
Wed Oct 14 14:32:05 UTC 2015 - dvaleev@suse.com

View File

@ -18,16 +18,18 @@
Name: i2c-tools
Url: http://www.lm-sensors.org/wiki/I2CTools
Version: 3.1.1
Version: 3.1.2
Release: 0
Summary: A heterogeneous set of I2C tools for Linux
License: GPL-2.0+
Group: Development/Tools/Other
Requires: udev
Recommends: modules
Source0: http://dl.lm-sensors.org/%{name}/releases/%{name}-%{version}.tar.bz2
Source1: http://dl.lm-sensors.org/%{name}/releases/%{name}-%{version}.tar.bz2.sig
Patch0: i2c-tools-r6250-ddr3-fix-ext-temp-refresh.diff
# lm-sensors.org is down for several months now
#Source0: http://dl.lm-sensors.org/%{name}/releases/%{name}-%{version}.tar.bz2
#Source1: http://dl.lm-sensors.org/%{name}/releases/%{name}-%{version}.tar.bz2.sig
Source0: %{name}-%{version}.tar.bz2
Source1: %{name}-%{version}.tar.bz2.sig
Patch90: i2c-tools-hackweek-9-dependencies.diff
Patch91: i2c-tools-hackweek-9-improve-DDR3-support.diff
Patch92: i2c-tools-r6053-Add-smbus-header.patch
@ -51,7 +53,6 @@ Authors:
%prep
%setup -q
%patch0 -p1
%patch90 -p1
%patch91 -p1
%patch92 -p1