root/lm-sensors/trunk/CHANGES @ 1846

Revision 1846, 30.3 KB (checked in by khali, 10 years ago)

LM83 updates.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1lm_sensors CHANGES file
2-----------------------
3This is a list of the most important changes in 2.x versions. It is by
4no means complete, listing only the most significant changes.
5The ultimate way to know what has changed is to run diff, or even neater,
6ask CVS about it:
7
8  * Checkout the archive (see doc/cvs for how you can do this)
9  * Determine which tags are valid, by running this command from the
10    project root directory:
11      cvs status -v -l Makefile
12    Valid tags are usually of the form V2-1-0 for version 2.1.0
13  * Ask cvs for the difference between two versions:
14      cvs diff -r TAG1 -r TAG2 DIFF-OPTIONS
15    for example:
16      cvs diff -r V2-0-0 -r V2-0-1 -u
17
18-----------------------------------------------------------------------------
19
202.8.0 (200307??)
21  NOTE: Requires i2c-2.8.0 or newer.
22  Dropped all kernel 2.2 and 2.3 compatibility; 2.4.9 or later required
23  File i2c-dev.h: Include userspace portion removed from i2c-dev.h in
24                  i2c package
25  File doc/chips/fscscy: Add watchdog documentation
26  File sensors.conf.eg: Fix vt1211/vt8231 thermistor calculations
27  Library: Add support for exponents and logarithms for vt1211/vt8235 temps;
28           add adm1026, lm83, lm85, w83791d support;
29           Advance version to 2.0.0
30  Makefiles: Generate warnings if new library won't be found by ld.so;
31             Modules now install in kernel/drivers/i2c/[busses,chips];
32             Ensure that headers in /usr/local/include are used first;
33             Don't use /usr/include headers for modules;
34             Handle multiple UTS_RELEASE definitions in linux/version.h;
35             Automatically generate kernel/include/sensors.h;
36             Remove old gzipped modules; remove old misc directory if empty;
37             Remove pre-2.4 installation method;
38             -Wall now the default;
39             Add new targets user, user_install, and help;
40             Run depmod after module installation
41  Modules (all): Cleanups including
42                - Add #include <i2c-proc.h>
43                - C99 initializers
44                - Remove #ifdef MODULE
45                - Remove #ifndef THIS_MODULE
46                - Remove #ifndef MODULE_LICENSE
47                - Remove other 2.1/2.2 #ifdefs
48                - Remove #include "sensors.h", copy SYSCTL defs to module
49                - Remove excess #includes
50                - Remove argument in i2c_register_entry()
51                - Remove dummy xxx_command() definition
52                - Remove EXPORT_NO_SYMBOLS
53                - Remove init_MUTEX #define
54                - Remove xxx_inc_use() and xxx_dec_use() functions; modules
55                  no longer adjust their own refcounts
56                - Use module_init() and module_exit()
57                - Update to new i2c_driver struct definition
58  Modules (bus PCI): Convert to PCI-module-style initialization
59  Modules (several): Add support for AMD Opteron VRM (VID) encoding
60  Module adm1021: Set alarm on failed reads and report old value;
61                  merge changes from kernel 2.5.54
62  Module adm1026: New
63  Module bmcsensors: Fix compile when DEBUG=1
64  Modules ddcmon, eeprom: Use i2c block reads if possible;
65                          better error handling
66  Module ds1307: Add to Makefile
67  Module gl520sm: Fix temperature over/hyst writes
68  Module lm75: merge changes from kernel 2.5.54
69  Module lm83: New
70  Module lm85: New
71  Module i2c-ali1535: Check for invalid transaction
72  Module i2c-ali15x3: Check for invalid transaction
73  Module i2c-amd756: merge changes from kernel 2.5.54;
74                     check for invalid transaction
75  Module i2c-amd8111: merge changes from kernel 2.5.54
76  Module i2c-i801: Add support for 82801EB (ICH5)
77  Module i2c-i810: Fix for some chips
78  Module i2c-nforce2: New
79  Module i2c-piix4: Check for invalid transaction
80  Module i2c-sis5595: Check for invalid transaction; add more blacklist IDs
81  Module i2c-sis645: Add support for SiS651, SiS961, SiS745, SiS746
82  Module i2c-viapro: Check for invalid transaction
83  Modules mtp008, smsc47m1, vt1211, vt8231, w83781d: Standardize and improve
84          pwm and pwm enable support; update docs
85  Module smbus-arp: Check adapter for HW or SW PEC support;
86                    add reset option
87  Module w83781d: Add support for w83791d
88  Module w83627hf: New
89  Program decode-dimms.pl: Recognize DDR and Rambus
90  Program eeprom: Fix writes for small eeproms
91  Program eeprom, eepromer: Use local i2c-dev.h for build
92  Program fancontrol: New
93  Program lm_sensors.init: Call sensors -s in start()
94  Program mkpatch: Fix vt8231 compile; keep tsunami from menu on non-alpha;
95                   Add adm1026,lm85 support;
96                   Remove sensors.c file; add sensors_compat.h;
97                   Remove patches to i2c-core.c and drivers/char/mem.c
98  Program p4b_smbus: Fix 'make install';
99                     Install in same place as other modules;
100                     Clear correct bits in config word
101  Program pwmconfig, pwmtest: New
102  Program sensors: add adm1026, lm85, w83791d support
103  Program sensors-detect: Add super i/o detection (smsc47m1, vt1211,
104                          w83627hf, w83627thf, w83697hf);
105                          Add support for SiS651, SiS961, SiS745, SiS746;
106                          Support dmidecode 2.0 and later;
107                          Fix "C" format error;
108                          Add support for adm1026, 82801EB (ICH5), W83791D;
109                          Add support for w83l785ts, nForce2;
110                          Fix UTF-8 incompatibility;
111                          Better support for lm75
112                          Add support for lm83
113
1142.7.0 (20021208)
115  NOTE: Requires i2c-2.7.0 or newer.
116  File doc/busses/i2c-ali1535: Add license, miscellaneous changes
117  File doc/busses/i2c-ali15x3: Add license, miscellaneous changes
118  File doc/busses/i2c-sis645: Add license
119  File doc/chips/lm92: Add license, features
120  File doc/chips/maxilife: Add license, parameters, features
121  File doc/chips/smartbatt: Complete rewrite
122  File doc/chips/vt8231: Add license, parameters
123  File sensors.conf.eg: Add section for lm75; complete the lm78 section
124  Library: Add support for MC1066; add multiple VRM version support for lm87;
125           enhance adm1023 support; initial support for Sony Vaio eeprom;
126           add support for bmcsensors; add hacks for additional dummy drivers
127  Makefile: Take kernel source location from /lib/modules/x.x.x/build;
128            add flags for x86_64 compiles
129  Module adm1021: Add support for MC1066
130  Module bmcsensors: New       
131  Module dmi_scan: Rename symbol duplicated in kernel; apply fixes from
132                   kernel 2.5.43; fix 2.2 kernel compiles
133  Module gl518sm: Iterate allowed only for rev 0x00
134  Module i2c-amd756: Configure base address for nForce support;
135                     check for uninitialized base address;
136                     add support for amd8111 (SMBus 1.0)
137  Module i2c-amd8111: New (SMBus 2.0)
138  Module i2c-ipmb: New
139  Module i2c-ipmi: New
140  Module i2c-keywest: Sync with kernel 2.4.20
141  Module i2c-sis630: Add support for SiS730
142  Module i2c-sis645: Improve support for SiS645/961;
143                     add support for SiS645DX/961 and SiS735;
144                     fix 2.2 kernel compiles
145  Module i2c-viapro: Add support for VT8233A (new ID 0x3177) and VT8235
146  Module lm87: Add multiple VRM version support
147  Module vt1211: Fix inx limits and alarms; fix in0
148  Module vt8231: Fix inx limits and alarms; fix in0
149  Module w83781d: Fix in0/in1 initialization
150  Module smartbatt: New
151  Modules (several): Remove #ifndefs, require i2c-2.7.0; HZ fixes
152  Program decode-dimms.pl: Code cleanup; valid HTML; better HTML output;
153                           stop decoding on checksum error
154  Program dmidecode: Fix read bug; upgrade to version 1.8
155  Program doc-insmod: Complete rewrite; fix author output
156  Program doc-features: Complete rewrite; handle missing sysctl entries;
157                        handle unknown prefix with suggestion
158  Program lm_sensors.init: Remove spaces bug; add green/red output
159  Program mkpatch: Fix dmi_scan module compile; add sis630, sis645, amd8111
160  Program rrd: Add sanity limits to newly-created RRD.
161  Program sensord: (v0.6.2) Add sanity limits to newly-created RRD.
162  Program sensors: Add support for MC1066, Rambus Rimms;
163                   fix w83781d temp3 alarm; fix gl518sm rev 0x00 recognition;
164                   initial support for Sony Vaio eeprom
165  Program sensors-detect: Add support for MC1066, smart battery, 8235,
166                          IPMI, AMD8111; add help if no sensors found;
167                          add ACPI method for IBM system detection;
168                          work with old Perl versions again;
169                          initial support for Sony Vaio eeprom
170
1712.6.5 (20020915)
172  NOTE: Requires i2c-2.6.1 or newer, or kernel 2.4.13 or newer.
173  File sensors.conf.eg: Fix temp[23] for as99127f; add vt8231
174  Library: Fix fan3_div writes for w8378* and it87; add vt8231
175  Module dmi_scan: new
176  Module ds1621: Fix enable/disable
177  Module eeprom: Do not corrupt 24RF08's when checksum=1
178  Module i2c-i801: Check for uninitialized base address;
179                   enable if not enabled
180  Module i2c-piix4: Refuse to load on IBM systems to prevent 24RF08 corruption
181  Module i2c-sis630: new
182  Module i2c-sis645: new
183  Module lm92: Fix in-kernel initialization
184  Module via686a: Remove VT8231 support
185  Module vt8231: new
186  Module w83781: recognize Asus "ASB100 Bach" as AS99127F
187  Program dmidecode: new
188  Programs i2cdetect, i2cdump, i2cset, isadump: Now installed by 'make install'
189  Program mkpatch: Add Config.in entries for, lm92,
190                   pcf8574, pcf8591, smsc47m1, vt1211;
191                   add dmi_scan
192  Program p4b_smbus: Fix compile for SMP and MODVERSIONS; fix PCI ID problem
193  Program lm_sensors.init: fix stop()
194  Program sensord: (v0.6.1) Add /usr/local/etc to config file path;
195                   add support for logging loadavg in RRD;
196                   fix down-converting raw labels for RRD;
197                   update chip support, still behind sensors
198  Program sensors: Add /usr/local/etc to config file path;
199                   fix -c and -u flags; add vt8231
200  Program sensors-detect: recognize Asus "ASB100 Bach" as AS99127F;
201                          refuse to run on IBM systems;
202                          fix sysconfig module numbering;
203                          change quick write to not corrupt 24RF08's
204
2052.6.4 (20020719)
206  NOTE: Requires i2c-2.6.1 or newer, or kernel 2.4.13 or newer.
207  File doc/vid: New
208  File include/sensors_vid.h: New
209  File sensors.conf.eg: Add vt1211, smsc47m1
210  Library: Add multiple VRM version support for adm1025, w83781d;
211           fix 'flex scanner jammed' on some systems;
212           add vt1211, smsc47m1, lm92;
213           fix access mode checking
214  Makefiles: For 2.4+ kernels, modules now install in
215             kernel/drivers/[i2c,sensors] , not misc/ , and
216             'make install' removes old versions in misc/ .
217             Use $CFLAGS and $CPPFLAGS if defined.
218  Module adm1025: Add multiple VID version support
219  Module ds1307: new
220  Module i2c-amd756: Add nVidia nForce support; fix block read length;
221                     reliability improvements
222  Module i2c-hydra: Flush posted writes
223  Module i2c-i801: Add support for 82801DB (ICH4)
224  Module i2c-i810: Flush posted writes
225  Module i2c-savage4: new
226  Module i2c-viapro: Add support for VT8231 (0x8235), VT8233A (0x3147)
227  Module i2c-voodoo3: Flush posted writes
228  Module ds1307: New
229  Module lm92: New
230  Module smbus-arp: new
231  Module smsc47m1: new
232  Module via686a: Add support for VT8231 sensors
233  Module vt1211: new
234  Module w83781d: Add multiple VID version support; fix temp alarms
235  Program eeprom: new
236  Program i2cdump: Add smbus block command specification, add PEC support
237  Program lm_sensors.init: new
238  Program mkpatch: Add sensors_vid.h, i2c-savage4, lm92,
239                   pcf8574, pcf8591, smsc47m1, vt1211
240  Program p4b_smbus: Add support for ICH4
241  Program rrd: Fix swapped CPU and MB temps in summ_week.cgi
242  Program sensord.init: Renamed, was prog/init/sensors
243  Program sensord: Major update, now requires rrd source;
244                   not compiled by default
245  Program sensors: Recognize DDR SDRAM; add adm1025 VID; add -A
246                   (don't display algo. and adap.) option;
247                   add vt1211, smsc47m1, lm92
248  Program sensors-detect: Add VT8231, VT8233A, several S3 devices;
249                          add 82801DB, LM85; fix perl warnings;
250                          generate /etc/sysconfig/lm_sensors for
251                          lm_sensors.init script
252
2532.6.3 (20020322)
254  NOTE: Requires i2c-2.6.1 or newer, or kernel 2.4.13 or newer.
255  Chip modules (most): Allow THIS_MODULE definition for kernels 2.2.18+
256  File doc/chips/it87: add more temp_type help
257  File sensors.conf.eg: Un-ignore it87 in8, temp3, fan3;
258                        add adm1021 section; add lm87 AIN[1,2] template;
259                        swap negative voltage limits for 782d,783s,627hf,
260                        697hf,it87; add more it87 help; swap neg. voltage
261                        limits for lm78(-j), lm79, w83781d, as99127f
262  Library: Add PCF8591, W83697HF, ADM1023 support;
263           fix w83* fan_min computes;
264           swap neg. voltage limits for lm78(-j), lm79, w83781d, as99127f
265  Module adm1024: Add MODULE_LICENSE("GPL")
266  Module bt869: Add s-video out and DVD resolution support
267  Module eeprom: Add support for locations 128-255; rename /proc entries in hex
268  Module fscscy: implement min/max for voltages and fans
269  Module i2c-amd756: Add support for AMD768
270  Module i2c-i810: Add support for 810E
271  Module i2c-keywest: Big update, sync with kernel 2.4.18
272  Module i2c-piix4: Check for uninitialized base address
273  Module i2c-sis5595: Blacklist 645, 735
274  Module i2c-viapro: Check for uninitialized base address
275  Module gl518sm: Standardize /proc entries in0-3
276  Module lm87: Fix in0, in1, in5 initial limits; ain[1,2] -> in[6,7];
277               fan -> fan1; fix temp2 limit writes
278  Module pcf8574: Add support for PCF8574A; /proc interface changed
279  Module pcf8591: new
280  Module sis5595: Blacklist 645, 735
281  Module w83781d: Add W83697HF support; allow force_subclients parameter
282                  for Tyan 2460
283  Programs decode-dimms.pl, decode-xeon.pl: Update for new /proc names
284  Program decode-vaio.pl: new
285  Program i2cdump: Add i2c block read capability (requires i2c-2.6.3);
286                   add text output
287  Program init/sensors: New SysV init script
288  Program mkpatch.pl: Add support for fscscy, add more help entries
289  Program p4b_smbus: new
290  Program rrd: Install summ_week.cgi
291  Program sensors: Add PCF8591, W83697HF, ADM1023 support,
292                   clean up chassis intrusion prints
293  Program sensors-detect: Add several Nvidia chips, add PCF8591, add 810E;
294                          fix Via686a and it87 detection;
295                          add AMD768, IPMI-BMC-KCS and -SMIC; add Via 8231;
296                          fix uninitialized values; it87 beats lm78
297
2982.6.2 (20011118)
299  NOTE: Requires i2c-2.6.1 or newer, or kernel 2.4.13 or newer.
300  Chip Modules (all): malloc.h -> slab.h
301  Modules (all): Add MODULE_LICENSE("GPL")
302  File doc/FAQ: More updates and additions
303  File sensors.conf.eg: Fix it87 in5,in6 (-12,-5) calculations
304  Library: Add fscpos and fscscy support, fix gl520 in4 ID,
305           update it87 alarm ID's.
306  Module fscpos: new (Fujitsu-Siemens Poseidon driver)
307  Module fscscy: new (Fujitsu-Siemens Scylla driver)
308  Module i2c-amd756: Improve busy handling/printk's
309  Module i2c-i801: Add 82801CA/CAM support
310  Module i2c-keywest: Sync with PPC people, it works now
311  Module i2c-piix4: Add Intel 82443MX and SMSC Victory66 support
312  Module i2c-viapro: Add Via VT8233 support
313  Module it87: Merge alarm_* /proc entries to alarms
314  Module sis5595: Fix support for rev B0
315  Module via686a: Make limit initializations reliable
316  Module w83781d: Allow init=0 parameter to bypass initialization
317  Program isadump: Add flat address space (PCI) support
318  Program mkpatch.pl: Add support for i2c-ali1535, adm1024, ds1621,
319                      fscpos, it87, maxilife, mtp008
320  Program sensors: Fix w83781d temp precision
321  Program sensors-detect: Add ALI1535, Via VT8233, it87 (i2c),
322                          Fujitsu Poseidon and Scylla, 
323                          Intel 82443MX and 82801CA/CAM detection,                     
324                          add ITE 8172G detection (driver in kernel 2.4.10)
325
3262.6.1 (20010830)
327  File BUGS: Updated
328  File doc/FAQ: More updates and additions
329  File doc/chips/adm1021: Claim support for Philips NE1617, NE1617A
330  File sensors.conf.eg: Fix/enhance it87 section
331  Library: ds1621 and it87 updates
332  Module i2c-ali15x3: Allow force_addr=0xaddr; enable if not enabled.
333  Module i2c-amd756: Add AMD 766 support
334  Module i2c-i801: Fix 82801BA detection broken by kernel 2.4.6
335  Module i2c-piix4: Add Serverworks CSB5 support
336  Module i2c-sis5595: Recognize unsupported chips and refuse to load
337  Module adm1025: Fixed temp2 min/max writes
338  Module ds1621: Add 12-bit precision mode
339  Module it87: Enable all alarms, add in8 support, add sensor type selection
340  Module sensors: Don't initialize i2c-proc (moved to i2c-core);
341                  remove support for module
342  Module sis5595: Recognize unsupported chips and refuse to load
343  Module w83781d: Fix fan speed for as99127f (broken by 2.6.0)
344  Program eepromer: new
345  Program mkpatch.pl: Fix dependencies on i2c-proc; disallow compilation
346                      of sensors.c as a module in kernel
347  Program sensors: it87 updates; adjust temp. precision for some chips
348  Program sensors-detect: Fix ADM1024 and ADM1025 detection;
349                          recognize unsupported SiS chips;
350                          recognize AMD 766 and Serverworks CSB5.
351
3522.6.0 (20010612)
353  NOTE: i2c-2.6.0 MUST BE be compiled AND installed first!!!
354        If your make fails because it can't find <linux/i2c-proc.h>, you
355        forgot this step!!!
356  File doc/FAQ: Many, many updates and additions
357  File doc/busses/i2c-sis5595: new
358  File doc/busses/i2c-tsunami: new
359  File doc/chips/it87: new
360  File doc/chips/via686a: Claim support for 686b.
361  File README.thinkpad: new
362  File sensors.conf.eg: Adjust as99127f in5 (-12V) and temp2 calculations;
363                        Add lm87, adm9240, ds1780, lm81 templates;
364                        Enhance help comments in file;
365                        Add Tyan S2510 dual-MTP008 example;
366                        Make separate sis5595 section.
367  Include file i2c-isa.h: No longer required, moved to i2c.h in i2c package
368  Include file sensors.h: Most contents moved to i2c-proc.h in i2c package
369  Library: Fix/standardize some lm87 and mtp008 entries; add sis5595 in4;
370           Add support for maxilife-nba and amd1024;
371           Change from sensors_* to i2c_* globals for new i2c-proc.[ch]
372  Chip Modules (all ISA): Remove #include "i2c-isa.h"
373  Chip Modules (all): Change from sensors_* to i2c_* globals
374                      for new i2c-proc.[ch]
375  Makefiles: enhance to support Alpha architecture
376  Module adm1021: Fix lm84 and gl523sm support
377  Module adm1024: new
378  Module i2c-i801: Chip detection cleanup
379  Module i2c-i810: Fixed i2c_i810_init() not found in patched kernel
380  Module i2c-sis5595: Allow force_addr=0xaddr; enable if not enabled.
381  Module i2c-tsunami: New
382  Module i2c-via: Ensure i2c bus is tristated correctly.
383  Module it87: new driver for IT8705, IT8712, Sis950 chips
384  Module lm78: Recognize chipid=0x20
385  Module lm87: Fix in0, in1 (2.5V and Vccp1) calculations
386  Module mtp008: Fix temp initializations;
387                 Save BIOS pin configuration of temps and fans;
388                 Fix sensor type reads/writes and fan min writes;
389                 Fix spurious invalid sensor type messages
390  Module sensors: Disabled, moved to i2c package as i2c-proc.c; only
391                  used for patched kernel now.
392                  Add xxx_init() calls for drivers added to mkpatch in 2.5.5.
393  Module sis5595: Fix temp, add in4 for chip revision 0xc0;
394                  Allow force_addr=0xaddr
395  Module via686a: Allow force_addr=0xaddr (for A7V/K7V boards)
396  Module w83781d: Don't reinitialize as99127f chip; this may cause fan/temp
397                  reading changes; Add messages for subclient
398                  registration failure
399  Programs i2cdetect, i2cdump: add devfs /dev/i2c/x support
400  Program i2cset: new
401  Program isadump: fix for Alpha arch. compiles
402  Program mkpatch.pl: Fix adm9240 typos; Add more chips to Configure.help;
403                      Remove ltc1710; Fix i2c_sis5595 typo;
404                      Support kernel 2.4.5 makefile change;
405                      Add i2c-tsunami; fixed i2c-voodoo3 configuration
406  Program sens_update_rrd: new
407  Program sensord: Add -d (debug) and -p (pid-file) options
408  Program sensors: Change reported version from 1.3 to the lm_sensors version;
409                   Fix swapped limit and hysteresis on 9240, 5595, 686a;
410                   Change mtp008 temps from max/min to limit/hyst;
411                   Add maxilife-nba, adm1024, it87 support.
412  Program sensors-detect: Recognize lm78 with chipid=0x20;
413                          Recognize SMSC Victory66 South Bridge;
414                          Add devfs /dev/i2c/x support;
415                          Add adm1024, it87xx support; Add thinkpad warning.
416  Program tellerstats: new
417
4182.5.5 (20010115)
419  NOTE: i2c-2.5.5 MUST BE be compiled and installed first, UNLESS
420        you have kernel 2.4.0-prerelease or greater.
421  Chip modules (all): Update mutex definition (works now for new 2.2 kernels)
422  File doc/developers/proc: new
423  File sensors.conf.eg: Add mtp008 entries, adm1025 entries
424  Library: Add ds1621, mtp008 support
425  Module adm1021: Add support for adm1021a / adm1023
426  Modules adm1021, thmc50: Rename /proc entries to temp[1-2]
427  Module adm1025: Add support for remote temp; rename /proc entries to
428                  in[0-5] and temp[1-2]; fix negative temp readings
429  Module adm9240: Rename /proc entries to in[0-5]
430  Module ddcmon: allow force and force_ddcmon parameters
431  Module ds1621: new
432  Module i2c-ali1535: Enhance error checking and recovery; add mutex
433  Module i2c-i810: Add "dummy write" before reads per Intel prog. ref.
434  Module i2c-piix4: add support for ServerWorks southbridge OSB4
435  Module lm87: cleanup, update voltage calculations
436  Module mtp008: new
437  Module pcf8574: change update time to 5 seconds
438  Modules sis5595, i2c-sis5595: Check for uninitialized base addresses
439  Module w83781d: fix beep setting via /proc
440  Programs editticket, readticket: new
441  Program mkpatch.pl: only works with 2.2 and 2.4 kernels; 2.3 support removed
442  Program mkpatch.pl: more fixes; now adds many more modules
443  Program sensors: Add ds1621, mtp008 support; add -f (Fahrenheit) option;
444                   add adm1025 temp2; report temp limits correctly as
445                   min/max or limit/hysteresis; print message if no
446                   sensors are found. Removed false errors from lm87 reads.
447  Program sensors-detect: Add ds1621, mtp008 detection;
448                          add ServerWorks detection
449
4502.5.4 (20001012)
451  Module i2c-viapro: Add support for Via 596B (0x3051)
452  Program m7101: moved to CVS tree, updated for 2.4.0 kernels
453  Program mkpatch.pl: fixed infinite loop
454  Program sensors-detect: Detect Via 596B (0x3051)
455
4562.5.3 (20001008)
457  NOTE: i2c 2.5.3 MUST BE be compiled and installed first.
458  File useful_addresses.html: update
459  Library: Add lm87 support
460  Module pcf8574: new
461  Module i2c-ali1535: new
462  Module i2c-ali15x3: removed force #ifdef.
463  Module i2c-i801: support Intel 82801BA (815E chipset)
464  Module i2c-i801: add i2c block write support, fix smbus block bugs
465                   (requires i2c 2.5.3 package)
466  Module i2c-i810: support Intel 82815
467  Module lm87: new
468  Module sensors: Fix for kernel 2.4.0-test8
469                  (remove copy_to_user_ret and put_user_ret)
470  Module w83781d: limit fan divisors to 8 max. for as99127f
471  Program decode-dimms: Add html output option, update for SPD spec 1.2B.
472  Program i2cdump: Add smbus block read support
473  Programs i2cdetect, i2cdump: Improve error reporting
474  Program sensors: new switch -u (--unknown)
475  Program sensors-detect: detect Intel 82801BA (815E chipset)
476  Program sensors-detect: detect Intel 82815
477  Program sensors-detect: detect ITE IT8705F / IT8712F (no driver yet)
478  Program sensors-detect: detect National LM87
479  Program sensors-detect: detect nVidia devices supported by i2c-riva.o
480  Program sensors-detect: Improve error reporting
481
4822.5.2 (20000709)
483  File sensors.conf.eg: Fix lm80 in8 calculation
484  Module w83781d: W83783S no longer crashes on unloading
485  Program sensors-detect: more robustness in case of unknown i2c adapters
486  Program sensors-detect, libsensors: fix eeprom size reporting
487  Program sensord: more flexibility, support for alarm scanning etc.
488  Program sensors: support for ignore setting on sensor alarms.
489  Programs: understand /dev/i2c* files (instead of /dev/i2c-*) too.
490
4912.5.1 (20000618)
492  Library: Add adm1025 support
493  Module adm1025: new
494  Module ddcmon: Fixed bus scan which could hang SMBus
495  Module i2c-keywest: new
496  Module maxilife: Add support for Maxilife '99 (NBA)
497  Module via686a: Enable sensors if not enabled by BIOS
498  Module w83781d: Improve w83783s support, w83627hf always has 2 pwm
499  Module w83781d: Fix sensor2&3 selection, enable VBAT (in8) monitoring
500  Module w83781d: Remove as99127f entries for in7-8, pwm3-4, sensor1-3
501  Module w83781d: Fis as99127f fan speed (was 66% too high)
502  Module w83781d: Improve beep input checking
503  Program i2cdump: Add Winbond-style bank selection
504  Program isadump: Add Winbond-style bank selection
505  Program sensors: Add adm1025 support.
506  Program sensors: Remove some as99127f entries, fix as99127 "(beep)"
507  Program sensors-detect: Fix i801 detection, add adm1025 driver entry
508  File sensors.conf.eg: Add Maxilife '99 entries
509  File sensors.conf.eg: Remove some as99127f entries.
510    Note: For as99127f, reinstall sensors.conf.eg manually (make install
511          won't reinstall it) or else 'sensors -s' will fail.
512
5132.5.0 (20000312)
514  Dropped all kernel 2.0 and 2.1 compatibility
515  Module i2c-i810: new
516  Module ddcmon: new
517  Module via686a: new
518  Module i2c-amd756: fixed region request
519  Module i2c-voodoo3: Converted to use i2c-algo-bit layer
520  Module w83781d: Don't change pin settings at initialization;
521                  also fix chip detection.
522  Library: Support for ddcmon and via686a
523  Program sensors-detect: Support for ddcmon and via686a
524  Program sensors: Support for eeprom, ddcmon and via686a
525
5262.4.5 (20000116)
527  Introduced DESTDIR installation prefix
528  Module lm80: fixes, temperature now read and set correctly
529  Module i2c-voodoo3: driver enhancements
530  Module w83781d: fixes, AS99127 works much better now
531  Library: New ignore keyword in config file
532  Programs: Support for new ignore keyword
533  Program sensors-detect: Support for MGA detections
534
5352.4.4 (19991201)
536  Addition of the alpha release of AMD 756 SMBus host support.
537  Many fixes and updates to the gl518sm driver
538  Updates and fixes for device detection
539
5402.4.0 (19990920)
541  Too much to list.
542  i2c and smbus parts are split off to a separate i2c package.
543  New drivers and other stuff.
544
5452.3.4 (19990616)
546  Module matorb: driver for Matrix-Orbital Displays (small LCD and VFDs)
547  All: Now compiles against kernel 2.0.x (again ;)
548  Module gl518sm: some updates and refinements
549
5502.3.3 (19990603)
551  All: Now compiles against kernel 2.3.x (x >= 1)
552  Module i2c-voodoo3: Timing issue fixes
553  Module bt869: Seems to be functional and relatively well tested
554  Many modules were modified to be more compatible with the new
555   Mutex structure in the new experimental kernels.
556
5572.3.2 (19990507)
558  Module i2c-hydra: Now compiles on 2.0.x kernels
559  Module i2c-lm75: Slightly better detection
560  * New, but not compiled by default:
561  Module i2c-voodoo3: beginning of Voodoo3 I2C bus driver
562  Module bt869: Beginning of BT869 (PAL/NTSC video converter) driver
563
5642.3.1 (19990501)
565  All: Now compiles on PPC
566  Module i2c-hydra: NEW
567  Module i2c-proc: Buffer overflow removed: `less /proc/bus-i2c-0' now works
568  Module w83781d: Removed deadlock (mutex was not initialized)
569  Documentation: A few glitches removed
570  Makefile: default module installation directory is now
571            /lib/modules/current/extra/misc
572  Program sensors-detect: PPC Hydra now detected
573  Program sensors: Now prints complete GL518SM information
574  Program sensors: SIS5595, ADM1021, MAX1617(A), ADM9240, DS1780 added
575
5762.3.0 (19990422)
577  All: Many, many changes and improvements
578  All: Many small bugs and problems removed
579  Modules: New insmod parameters
580  Modules: Much improved chip detection
581  Module maxilife: NEW
582  Module adm1021: MAX1617A now also supported
583  Module adm9240: DS1780 now also supported
584  Module w83781d: W83782D and W83783S now also supported
585  Program sensors-detect: NEW
586  Library: All chips now supported
587  Documentation: Very much improved
588
5892.2.2 (199903??)
590  Just some minor updates and bug fixes.
591
5922.2.1 (19990218)
593  All: Removed compile warnings
594  Module i2c-dev: Small bug removed if DEBUG=1 was used
595  Module sis5595: Now compiles for 2.0 kernels
596  Module adm1021: Detection corrected
597 
5982.2.0 (19990216)
599  All: Set copyrights to include 1999
600  All: Small bugfixes
601  I2C: Upgraded to newest archive of Simon Vogl
602  Module i2c-dev: NEW
603  Module i2c-ali15x3: NEW
604  Module i2c-via: This is old module bit-mb, now moved to the main lm_sensors
605     directories, and somewhat improved
606  Module sis5595: NEW
607  Modules: Renamed all bus modules to i2c-*, new directory lay-out
608  Library: Support for new chip drivers, several small bugs fixed
609  Library manual pages: NEW
610  Program i2cdetect: Moved to detect directory
611  Program detect.pl: NEW
612  Program doc-features: NEW
613  Program sensors: Added man-page
614  Document BUGS: Added cdrom bug and kernel i2c conflict
615 
6162.1.2 (19990116)
617  Modules lm80.o, w83781d.o: fan-related Segmentation fault corrected
618  Module gl518sm.o: yet more bug fixes. It should at long last be usable now
619  Documentation in doc/kernel: NEW
620
6212.1.1 (19990107)
622  Module i2c-proc.o: Hack to make /proc/bus/ possible for kernels 2.0.35
623                     and older
624  Module gl518sm.o: Miscelaneous bugs and problems solved
625  Program isadump: NEW
626
6272.1.0 (19981230)
628  Library: Completely NEW
629  Program sensors: NEW
630  Program grab_busses: NEW
631  Program decode-dimms: More information
632  Module bit-mb.o: Removed spurious semicolon; now runs on more VIA chipsets
633  Module w83781d.o: NEW
634  Module lm80.o: NEW
635  Module gl518sm.o: new procfile beep, several small updates
636  Modules: Now use pin readings, no more scaling within the kernel (use the
637           library instead)
638 
6392.0.2 (19981214)
640  Module eeprom.o: NEW
641  Program decode-dimms: NEW
642  Modules: fill_inode fix, will stop segfaults on unloading in kernels after
643           2.1.58
644  Modules: Somewhat less verbose on transfers
645  Module lm78.o now recognizes and handles lm78-j and lm79
646
6472.0.1 (1998121?)
648  Module gl518sm.o updates, to make it actually work
649  Module lm75.o high/low-byte swapping write bug fixed
650
6512.0.0 (19981209)
652  Initial release
Note: See TracBrowser for help on using the browser.