root/lm-sensors/trunk/CHANGES @ 1889

Revision 1889, 30.7 KB (checked in by khali, 10 years ago)

Update.

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