Changeset 5844
- Timestamp:
- 07/01/10 13:56:42 (20 months ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 21 modified
-
CHANGES (modified) (1 diff)
-
README (modified) (1 diff)
-
lib/Module.mk (modified) (1 diff)
-
lib/access.c (modified) (1 diff)
-
lib/access.h (modified) (1 diff)
-
lib/conf-lex.l (modified) (1 diff)
-
lib/conf-parse.y (modified) (1 diff)
-
lib/conf.h (modified) (1 diff)
-
lib/data.c (modified) (1 diff)
-
lib/data.h (modified) (1 diff)
-
lib/error.c (modified) (1 diff)
-
lib/error.h (modified) (1 diff)
-
lib/general.c (modified) (1 diff)
-
lib/general.h (modified) (1 diff)
-
lib/init.c (modified) (1 diff)
-
lib/init.h (modified) (1 diff)
-
lib/libsensors.3 (modified) (1 diff)
-
lib/scanner.h (modified) (1 diff)
-
lib/sensors.h (modified) (1 diff)
-
lib/sysfs.c (modified) (1 diff)
-
lib/sysfs.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r5843 r5844 5 5 libsensors: Increase MAX_SENSORS_PER_TYPE to 24 6 6 Map individual beep features 7 Change license to LGPL 7 8 sensord: Fix support of multiple chips (#2377) 8 9 sensors: Properly handle sensor input read errors -
lm-sensors/trunk/README
r5643 r5844 100 100 retrieved through anonymous SVN; see doc/svn for details. 101 101 102 This package may be distributed according to the GNU General Public103 License (GPL), as included in the file COPYING.104 102 105 Note that libsensors falls under the GPL, not the LGPL. In more human 106 language, that means it is FORBIDDEN to link any application to the 107 library, even to the shared version, if the application itself does not 108 fall under the GPL. 103 LICENSE 104 ------- 105 106 The library (libsensors) is released under the GNU Lesser General Public 107 License (LGPL), as included in the file COPYING.LGPL. The rest of this 108 package may be distributed according to the GNU General Public License 109 (GPL), as included in the file COPYING. -
lm-sensors/trunk/lib/Module.mk
r5819 r5844 2 2 # Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl> 3 3 # 4 # This program is free software; you can redistribute it and/or modify5 # it under the terms of the GNU General Public License as published by6 # the Free Software Foundation; either version 2 of the License, or7 # (at your option) any later version.4 # This library is free software; you can redistribute it and/or 5 # modify it under the terms of the GNU Lesser General Public 6 # License as published by the Free Software Foundation; either 7 # version 2.1 of the License, or (at your option) any later version. 8 8 # 9 # This programis distributed in the hope that it will be useful,9 # This library is distributed in the hope that it will be useful, 10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of 11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 # GNU General Public License for more details.12 # GNU Lesser General Public License for more details. 13 13 # 14 14 # You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/access.c
r5786 r5844 4 4 Copyright (C) 2007-2009 Jean Delvare <khali@linux-fr.org> 5 5 6 This program is free software; you can redistribute it and/or modify7 it under the terms of the GNU General Public License as published by8 the Free Software Foundation; either version 2 of the License, or9 (at your option) any later version.10 11 This programis distributed in the hope that it will be useful,6 This library is free software; you can redistribute it and/or 7 modify it under the terms of the GNU Lesser General Public 8 License as published by the Free Software Foundation; either 9 version 2.1 of the License, or (at your option) any later version. 10 11 This library is distributed in the hope that it will be useful, 12 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details.14 GNU Lesser General Public License for more details. 15 15 16 16 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/access.h
r5163 r5844 4 4 Copyright (C) 2007 Jean Delvare <khali@linux-fr.org> 5 5 6 This program is free software; you can redistribute it and/or modify7 it under the terms of the GNU General Public License as published by8 the Free Software Foundation; either version 2 of the License, or9 (at your option) any later version.6 This library is free software; you can redistribute it and/or 7 modify it under the terms of the GNU Lesser General Public 8 License as published by the Free Software Foundation; either 9 version 2.1 of the License, or (at your option) any later version. 10 10 11 This programis distributed in the hope that it will be useful,11 This library is distributed in the hope that it will be useful, 12 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details.14 GNU Lesser General Public License for more details. 15 15 16 16 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/conf-lex.l
r5648 r5844 4 4 Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl> 5 5 6 This program is free software; you can redistribute it and/or modify7 it under the terms of the GNU General Public License as published by8 the Free Software Foundation; either version 2 of the License, or9 (at your option) any later version.10 11 This programis distributed in the hope that it will be useful,6 This library is free software; you can redistribute it and/or 7 modify it under the terms of the GNU Lesser General Public 8 License as published by the Free Software Foundation; either 9 version 2.1 of the License, or (at your option) any later version. 10 11 This library is distributed in the hope that it will be useful, 12 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details.14 GNU Lesser General Public License for more details. 15 15 16 16 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/conf-parse.y
r5674 r5844 4 4 Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl> 5 5 6 This program is free software; you can redistribute it and/or modify7 it under the terms of the GNU General Public License as published by8 the Free Software Foundation; either version 2 of the License, or9 (at your option) any later version.10 11 This programis distributed in the hope that it will be useful,6 This library is free software; you can redistribute it and/or 7 modify it under the terms of the GNU Lesser General Public 8 License as published by the Free Software Foundation; either 9 version 2.1 of the License, or (at your option) any later version. 10 11 This library is distributed in the hope that it will be useful, 12 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details.14 GNU Lesser General Public License for more details. 15 15 16 16 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/conf.h
r5649 r5844 3 3 Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl> 4 4 5 This program is free software; you can redistribute it and/or modify6 it under the terms of the GNU General Public License as published by7 the Free Software Foundation; either version 2 of the License, or8 (at your option) any later version.5 This library is free software; you can redistribute it and/or 6 modify it under the terms of the GNU Lesser General Public 7 License as published by the Free Software Foundation; either 8 version 2.1 of the License, or (at your option) any later version. 9 9 10 This programis distributed in the hope that it will be useful,10 This library is distributed in the hope that it will be useful, 11 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 GNU General Public License for more details.13 GNU Lesser General Public License for more details. 14 14 15 15 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/data.c
r5786 r5844 4 4 Copyright (C) 2007, 2009 Jean Delvare <khali@linux-fr.org> 5 5 6 This program is free software; you can redistribute it and/or modify7 it under the terms of the GNU General Public License as published by8 the Free Software Foundation; either version 2 of the License, or9 (at your option) any later version.10 11 This programis distributed in the hope that it will be useful,6 This library is free software; you can redistribute it and/or 7 modify it under the terms of the GNU Lesser General Public 8 License as published by the Free Software Foundation; either 9 version 2.1 of the License, or (at your option) any later version. 10 11 This library is distributed in the hope that it will be useful, 12 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details.14 GNU Lesser General Public License for more details. 15 15 16 16 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/data.h
r5648 r5844 4 4 Copyright (C) 2007, 2009 Jean Delvare <khali@linux-fr.org> 5 5 6 This program is free software; you can redistribute it and/or modify7 it under the terms of the GNU General Public License as published by8 the Free Software Foundation; either version 2 of the License, or9 (at your option) any later version.6 This library is free software; you can redistribute it and/or 7 modify it under the terms of the GNU Lesser General Public 8 License as published by the Free Software Foundation; either 9 version 2.1 of the License, or (at your option) any later version. 10 10 11 This programis distributed in the hope that it will be useful,11 This library is distributed in the hope that it will be useful, 12 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details.14 GNU Lesser General Public License for more details. 15 15 16 16 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/error.c
r5649 r5844 4 4 Copyright (C) 2007-2009 Jean Delvare <khali@linux-fr.org> 5 5 6 This program is free software; you can redistribute it and/or modify7 it under the terms of the GNU General Public License as published by8 the Free Software Foundation; either version 2 of the License, or9 (at your option) any later version.6 This library is free software; you can redistribute it and/or 7 modify it under the terms of the GNU Lesser General Public 8 License as published by the Free Software Foundation; either 9 version 2.1 of the License, or (at your option) any later version. 10 10 11 This programis distributed in the hope that it will be useful,11 This library is distributed in the hope that it will be useful, 12 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details.14 GNU Lesser General Public License for more details. 15 15 16 16 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/error.h
r5649 r5844 4 4 Copyright (C) 2007-2009 Jean Delvare <khali@linux-fr.org> 5 5 6 This program is free software; you can redistribute it and/or modify7 it under the terms of the GNU General Public License as published by8 the Free Software Foundation; either version 2 of the License, or9 (at your option) any later version.6 This library is free software; you can redistribute it and/or 7 modify it under the terms of the GNU Lesser General Public 8 License as published by the Free Software Foundation; either 9 version 2.1 of the License, or (at your option) any later version. 10 10 11 This programis distributed in the hope that it will be useful,11 This library is distributed in the hope that it will be useful, 12 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details.14 GNU Lesser General Public License for more details. 15 15 16 16 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/general.c
r5674 r5844 3 3 Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl> 4 4 5 This program is free software; you can redistribute it and/or modify6 it under the terms of the GNU General Public License as published by7 the Free Software Foundation; either version 2 of the License, or8 (at your option) any later version.5 This library is free software; you can redistribute it and/or 6 modify it under the terms of the GNU Lesser General Public 7 License as published by the Free Software Foundation; either 8 version 2.1 of the License, or (at your option) any later version. 9 9 10 This programis distributed in the hope that it will be useful,10 This library is distributed in the hope that it will be useful, 11 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 GNU General Public License for more details.13 GNU Lesser General Public License for more details. 14 14 15 15 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/general.h
r5163 r5844 3 3 Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl> 4 4 5 This program is free software; you can redistribute it and/or modify6 it under the terms of the GNU General Public License as published by7 the Free Software Foundation; either version 2 of the License, or8 (at your option) any later version.5 This library is free software; you can redistribute it and/or 6 modify it under the terms of the GNU Lesser General Public 7 License as published by the Free Software Foundation; either 8 version 2.1 of the License, or (at your option) any later version. 9 9 10 This programis distributed in the hope that it will be useful,10 This library is distributed in the hope that it will be useful, 11 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 GNU General Public License for more details.13 GNU Lesser General Public License for more details. 14 14 15 15 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/init.c
r5730 r5844 4 4 Copyright (C) 2007, 2009 Jean Delvare <khali@linux-fr.org> 5 5 6 This program is free software; you can redistribute it and/or modify7 it under the terms of the GNU General Public License as published by8 the Free Software Foundation; either version 2 of the License, or9 (at your option) any later version.10 11 This programis distributed in the hope that it will be useful,6 This library is free software; you can redistribute it and/or 7 modify it under the terms of the GNU Lesser General Public 8 License as published by the Free Software Foundation; either 9 version 2.1 of the License, or (at your option) any later version. 10 11 This library is distributed in the hope that it will be useful, 12 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details.14 GNU Lesser General Public License for more details. 15 15 16 16 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/init.h
r5302 r5844 3 3 Copyright (C) 2007 Jean Delvare <khali@linux-fr.org> 4 4 5 This program is free software; you can redistribute it and/or modify6 it under the terms of the GNU General Public License as published by7 the Free Software Foundation; either version 2 of the License, or8 (at your option) any later version.5 This library is free software; you can redistribute it and/or 6 modify it under the terms of the GNU Lesser General Public 7 License as published by the Free Software Foundation; either 8 version 2.1 of the License, or (at your option) any later version. 9 9 10 This programis distributed in the hope that it will be useful,10 This library is distributed in the hope that it will be useful, 11 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 GNU General Public License for more details.13 GNU Lesser General Public License for more details. 14 14 15 15 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/libsensors.3
r5740 r5844 2 2 .\" Copyright (C) 2007, 2009 Jean Delvare <khali@linux-fr.org> 3 3 .\" based on sensors.h, part of libsensors by Frodo Looijaard 4 .\" libsensors is distributed under the GPL4 .\" libsensors is distributed under the LGPL 5 5 .\" 6 6 .\" Permission is granted to make and distribute verbatim copies of this -
lm-sensors/trunk/lib/scanner.h
r5648 r5844 3 3 Copyright (c) 2006 Mark M. Hoffman <mhoffman@lightlink.com> 4 4 5 This program is free software; you can redistribute it and/or modify6 it under the terms of the GNU General Public License as published by7 the Free Software Foundation; either version 2 of the License, or8 (at your option) any later version.5 This library is free software; you can redistribute it and/or 6 modify it under the terms of the GNU Lesser General Public 7 License as published by the Free Software Foundation; either 8 version 2.1 of the License, or (at your option) any later version. 9 9 10 This programis distributed in the hope that it will be useful,10 This library is distributed in the hope that it will be useful, 11 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 GNU General Public License for more details.13 GNU Lesser General Public License for more details. 14 14 15 15 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/sensors.h
r5786 r5844 4 4 Copyright (C) 2007 Jean Delvare <khali@linux-fr.org> 5 5 6 This program is free software; you can redistribute it and/or modify7 it under the terms of the GNU General Public License as published by8 the Free Software Foundation; either version 2 of the License, or9 (at your option) any later version.10 11 This programis distributed in the hope that it will be useful,6 This library is free software; you can redistribute it and/or 7 modify it under the terms of the GNU Lesser General Public 8 License as published by the Free Software Foundation; either 9 version 2.1 of the License, or (at your option) any later version. 10 11 This library is distributed in the hope that it will be useful, 12 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details.14 GNU Lesser General Public License for more details. 15 15 16 16 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/sysfs.c
r5843 r5844 4 4 Copyright (C) 2007-2008 Jean Delvare <khali@linux-fr.org> 5 5 6 This program is free software; you can redistribute it and/or modify7 it under the terms of the GNU General Public License as published by8 the Free Software Foundation; either version 2 of the License, or9 (at your option) any later version.10 11 This programis distributed in the hope that it will be useful,6 This library is free software; you can redistribute it and/or 7 modify it under the terms of the GNU Lesser General Public 8 License as published by the Free Software Foundation; either 9 version 2.1 of the License, or (at your option) any later version. 10 11 This library is distributed in the hope that it will be useful, 12 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details.14 GNU Lesser General Public License for more details. 15 15 16 16 You should have received a copy of the GNU General Public License -
lm-sensors/trunk/lib/sysfs.h
r5163 r5844 4 4 Copyright (C) 2007 Jean Delvare <khali@linux-fr.org> 5 5 6 This program is free software; you can redistribute it and/or modify7 it under the terms of the GNU General Public License as published by8 the Free Software Foundation; either version 2 of the License, or9 (at your option) any later version.6 This library is free software; you can redistribute it and/or 7 modify it under the terms of the GNU Lesser General Public 8 License as published by the Free Software Foundation; either 9 version 2.1 of the License, or (at your option) any later version. 10 10 11 This programis distributed in the hope that it will be useful,11 This library is distributed in the hope that it will be useful, 12 12 but WITHOUT ANY WARRANTY; without even the implied warranty of 13 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 GNU General Public License for more details.14 GNU Lesser General Public License for more details. 15 15 16 16 You should have received a copy of the GNU General Public License
