|
|
1a9869 |
From 999b99de9415a3d55f6f46dcb99d74ed3d476982 Mon Sep 17 00:00:00 2001
|
|
|
1a9869 |
From: =?UTF-8?q?Ond=C5=99ej=20Lyson=C4=9Bk?= <olysonek@redhat.com>
|
|
|
1a9869 |
Date: Wed, 27 Mar 2019 15:11:05 +0100
|
|
|
1a9869 |
Subject: [PATCH] Fix stale links and outdated info
|
|
|
1a9869 |
MIME-Version: 1.0
|
|
|
1a9869 |
Content-Type: text/plain; charset=UTF-8
|
|
|
1a9869 |
Content-Transfer-Encoding: 8bit
|
|
|
1a9869 |
|
|
|
1a9869 |
This combines several upstream commits, see below. The change to
|
|
|
1a9869 |
sensors.conf.default is downstream-only.
|
|
|
1a9869 |
|
|
|
1a9869 |
Resolves: rhbz#1356253
|
|
|
1a9869 |
|
|
|
1a9869 |
Signed-off-by: Ondřej Lysoněk <olysonek@redhat.com>
|
|
|
1a9869 |
|
|
|
1a9869 |
(cherry picked from commit 75dbc240d9d758a75ff04f6b6bfa3f34e8842087)
|
|
|
1a9869 |
(cherry picked from commit 4bc6ae4b8fdb7db96aa65537225922ec0dd1b284)
|
|
|
1a9869 |
(cherry picked from commit e0e2d2d787d8d86fad1d3c545fbf487605903bd6)
|
|
|
1a9869 |
(cherry picked from commit 24dab30d23cd99098b487585b54e30b8c4e899cf)
|
|
|
1a9869 |
(cherry picked from commit 6413b80847ec54792d026191c01cdb985441a28b)
|
|
|
1a9869 |
(cherry picked from commit be3679ae06b622b1d868271ddeb6ae8d12196d1f)
|
|
|
1a9869 |
(cherry picked from commit 17d62bd3180d01676834d8a901d9bb1216b2f979)
|
|
|
1a9869 |
(cherry picked from commit 8f54fe85e8c9015190a2c80b8297ea69b5111728)
|
|
|
1a9869 |
(cherry picked from commit 807f9b1529892c0ac89bca0c7ae781c59f9c8393)
|
|
|
1a9869 |
(cherry picked from commit 255804953e039a725df47c596e47f68554118ca5)
|
|
|
1a9869 |
(cherry picked from commit 012d76b9785b467cf219bf134d6610861de58a97)
|
|
|
1a9869 |
(cherry picked from commit 84f773b3ec8b75f377a68fd1436ea3ac6d11b170)
|
|
|
1a9869 |
---
|
|
|
1a9869 |
Makefile | 2 +-
|
|
|
1a9869 |
README | 27 ++++++++++++++++++---------
|
|
|
1a9869 |
doc/developers/lm_sensors.lsm | 10 ++++------
|
|
|
1a9869 |
doc/developers/release_checklist | 30 ++++++++----------------------
|
|
|
1a9869 |
doc/donations | 2 +-
|
|
|
1a9869 |
doc/git | 22 ++++++++++++++++++++++
|
|
|
1a9869 |
doc/progs | 7 +++++--
|
|
|
1a9869 |
doc/svn | 31 -------------------------------
|
|
|
1a9869 |
etc/sensors.conf.default | 2 +-
|
|
|
1a9869 |
etc/sensors.conf.eg | 4 ++--
|
|
|
1a9869 |
lib/libsensors.3 | 3 +--
|
|
|
1a9869 |
lib/sensors.conf.5 | 5 +----
|
|
|
1a9869 |
prog/detect/sensors-detect | 6 +++---
|
|
|
1a9869 |
prog/dump/isadump.8 | 2 +-
|
|
|
1a9869 |
prog/dump/isaset.8 | 2 +-
|
|
|
1a9869 |
prog/init/lm_sensors.init | 2 +-
|
|
|
1a9869 |
prog/rrd/sens_day.in | 2 +-
|
|
|
1a9869 |
prog/rrd/sens_week.in | 2 +-
|
|
|
1a9869 |
prog/rrd/summ_week.in | 2 +-
|
|
|
1a9869 |
prog/sensord/rrd.c | 3 ++-
|
|
|
1a9869 |
prog/sensors/sensors.1 | 2 +-
|
|
|
1a9869 |
prog/tellerstats/index.shtml | 2 +-
|
|
|
1a9869 |
22 files changed, 77 insertions(+), 93 deletions(-)
|
|
|
1a9869 |
create mode 100644 doc/git
|
|
|
1a9869 |
delete mode 100644 doc/svn
|
|
|
1a9869 |
|
|
|
1a9869 |
diff --git a/Makefile b/Makefile
|
|
|
1a9869 |
index d6f2192c..2f5859f0 100644
|
|
|
1a9869 |
--- a/Makefile
|
|
|
1a9869 |
+++ b/Makefile
|
|
|
1a9869 |
@@ -226,7 +226,7 @@ manhtml:
|
|
|
1a9869 |
cp $(MANPAGES) html
|
|
|
1a9869 |
cd html ; \
|
|
|
1a9869 |
export LOGNAME=sensors ; \
|
|
|
1a9869 |
- export HOSTNAME=www.lm-sensors.org ; \
|
|
|
1a9869 |
+ export HOSTNAME=hwmon.wiki.kernel.org ; \
|
|
|
1a9869 |
man2html *.[1-8] ; \
|
|
|
1a9869 |
$(RM) *.[1-8]
|
|
|
1a9869 |
|
|
|
1a9869 |
diff --git a/README b/README
|
|
|
1a9869 |
index 9c09ae4a..87b324b4 100644
|
|
|
1a9869 |
--- a/README
|
|
|
1a9869 |
+++ b/README
|
|
|
1a9869 |
@@ -82,23 +82,32 @@ daemon watching for sensor values, logging alarms and feeding an RRD
|
|
|
1a9869 |
database with the sensor measurements.
|
|
|
1a9869 |
|
|
|
1a9869 |
This package does not contain a nice graphical monitor. See
|
|
|
1a9869 |
-http://www.lm-sensors.org/wiki/UsefulLinks for pointers to such programs.
|
|
|
1a9869 |
+http://sensors-applet.sourceforge.net/
|
|
|
1a9869 |
+https://01.org/powertop/
|
|
|
1a9869 |
+https://wpitchoune.net/psensor/
|
|
|
1a9869 |
+https://amanusk.github.io/s-tui/
|
|
|
1a9869 |
+for such programs.
|
|
|
1a9869 |
|
|
|
1a9869 |
|
|
|
1a9869 |
OTHER INFORMATION
|
|
|
1a9869 |
-----------------
|
|
|
1a9869 |
|
|
|
1a9869 |
-The developers of this package can be reached through a mailing-list
|
|
|
1a9869 |
-(see http://www.lm-sensors.org/wiki/AuthorsAndContributors). Do not hesitate
|
|
|
1a9869 |
-to mail us if you have questions, suggestions, problems, want to
|
|
|
1a9869 |
-contribute, or just want to report it works for you. But please try to
|
|
|
1a9869 |
+The lm_sensors website can be found at
|
|
|
1a9869 |
+https://hwmon.wiki.kernel.org/lm_sensors
|
|
|
1a9869 |
+
|
|
|
1a9869 |
+The developers of this package can be reached using
|
|
|
1a9869 |
+* a mailing list lm-sensors <at> vger <dot> kernel <dot> org
|
|
|
1a9869 |
+ (you can get information on how to subscribe, unsubscribe, and the list
|
|
|
1a9869 |
+ of archives at http://vger.kernel.org/vger-lists.html#lm-sensors;
|
|
|
1a9869 |
+ you do not need to be subscribed to post to the list)
|
|
|
1a9869 |
+* GitHub (see https://github.com/lm-sensors/lm-sensors)
|
|
|
1a9869 |
+
|
|
|
1a9869 |
+Do not hesitate to contact us if you have questions, suggestions, problems,
|
|
|
1a9869 |
+want to contribute, or just want to report it works for you. But please try to
|
|
|
1a9869 |
read the documentation before you ask any questions! It's all under doc/.
|
|
|
1a9869 |
-Also make sure you read the FAQ at http://www.lm-sensors.org/wiki/FAQ.
|
|
|
1a9869 |
|
|
|
1a9869 |
The latest version of this package can always be found at:
|
|
|
1a9869 |
-http://www.lm-sensors.org/wiki/Download. Pre-release versions can be
|
|
|
1a9869 |
-retrieved through anonymous SVN; see doc/svn for details.
|
|
|
1a9869 |
-
|
|
|
1a9869 |
+https://github.com/lm-sensors/lm-sensors.
|
|
|
1a9869 |
|
|
|
1a9869 |
LICENSE
|
|
|
1a9869 |
-------
|
|
|
1a9869 |
diff --git a/doc/developers/lm_sensors.lsm b/doc/developers/lm_sensors.lsm
|
|
|
1a9869 |
index dcccd623..cf239557 100644
|
|
|
1a9869 |
--- a/doc/developers/lm_sensors.lsm
|
|
|
1a9869 |
+++ b/doc/developers/lm_sensors.lsm
|
|
|
1a9869 |
@@ -6,13 +6,11 @@ Description: Hardware health monitoring package for Linux. It consists of
|
|
|
1a9869 |
a library to allow applications to read sensors data more
|
|
|
1a9869 |
easily, and of an example program to pretty print this data.
|
|
|
1a9869 |
Also included is a fan speed control script.
|
|
|
1a9869 |
- http://www.lm-sensors.org/
|
|
|
1a9869 |
+ https://hwmon.wiki.kernel.org/lm_sensors
|
|
|
1a9869 |
Keywords: sensors health hardware-monitoring fan-speed
|
|
|
1a9869 |
Author: jdelvare@suse.de (Jean Delvare)
|
|
|
1a9869 |
-Maintained-by: jdelvare@suse.de (Jean Delvare)
|
|
|
1a9869 |
-Primary-site: http://dl.lm-sensors.org /lm-sensors/releases/
|
|
|
1a9869 |
- lm_sensors-3.4.0.tar.bz2
|
|
|
1a9869 |
- lm_sensors-3.4.0.tar.bz2.sig
|
|
|
1a9869 |
-Alternate-site: ftp.netroedge.com /pub/lm-sensors/
|
|
|
1a9869 |
+Maintained-by: olysonek@redhat.com (Ondřej Lysoněk)
|
|
|
1a9869 |
+Primary-site: https://github.com
|
|
|
1a9869 |
+ /lm-sensors/lm-sensors/archive/V3-4-0/lm-sensors-3-4-0.tar.gz
|
|
|
1a9869 |
Copying-policy: GPL/LGPL
|
|
|
1a9869 |
End
|
|
|
1a9869 |
diff --git a/doc/developers/release_checklist b/doc/developers/release_checklist
|
|
|
1a9869 |
index 9ea1ddf2..b84256b5 100644
|
|
|
1a9869 |
--- a/doc/developers/release_checklist
|
|
|
1a9869 |
+++ b/doc/developers/release_checklist
|
|
|
1a9869 |
@@ -12,30 +12,16 @@ Release steps:
|
|
|
1a9869 |
- Update doc/libsensors-API.txt and SENSORS_API_VERSION in lib/sensors.h
|
|
|
1a9869 |
- Update version.h
|
|
|
1a9869 |
- Commit
|
|
|
1a9869 |
-- Tag the release using SVN:
|
|
|
1a9869 |
- svn copy http://lm-sensors.org/svn/lm-sensors/trunk http://lm-sensors.org/svn/lm-sensors/tags/V3-x-x -m "3.x.x release"
|
|
|
1a9869 |
-
|
|
|
1a9869 |
-- Move to a temporary directory and get a copy of the freshly tagged code:
|
|
|
1a9869 |
- svn export http://lm-sensors.org/svn/lm-sensors/tags/V3-x-x lm_sensors-3.x.x
|
|
|
1a9869 |
-- Tar it up:
|
|
|
1a9869 |
- tar -jcf lm_sensors-3.x.x.tar.bz2 lm_sensors-3.x.x
|
|
|
1a9869 |
-- Sign it:
|
|
|
1a9869 |
- gpg -b lm_sensors-3.x.x.tar.bz2
|
|
|
1a9869 |
-- Post it:
|
|
|
1a9869 |
- scp lm_sensors-3.x.x.tar.bz2{,.sig} devel.atrpms.net:/srv/lm-sensors.org/dl/lm-sensors/releases
|
|
|
1a9869 |
-- Set correct permissions:
|
|
|
1a9869 |
- ssh devel.atrpms.net chmod 664 '/srv/lm-sensors.org/dl/lm-sensors/releases/lm_sensors-3.x.x.tar.bz2{,.sig}'
|
|
|
1a9869 |
+- Tag the release using git:
|
|
|
1a9869 |
+ git tag V3-x-x
|
|
|
1a9869 |
+ git push origin V3-x-x
|
|
|
1a9869 |
|
|
|
1a9869 |
After release, remember to:
|
|
|
1a9869 |
-- Update the Download page on lm-sensors.org, then add a news item
|
|
|
1a9869 |
+- Update the Download page on https://hwmon.wiki.kernel.org/download - use
|
|
|
1a9869 |
+ a URL in the following format:
|
|
|
1a9869 |
+ https://github.com/lm-sensors/lm-sensors/archive/V3-x-x/lm-sensors-3-x-x.tar.gz
|
|
|
1a9869 |
+- Add a news item to https://hwmon.wiki.kernel.org/lm_sensors
|
|
|
1a9869 |
- Announce on the lm-sensors mailing list
|
|
|
1a9869 |
-- Add "+SVN" to version.h and commit
|
|
|
1a9869 |
-- Mark the corresponding release milestone as complete using trac-admin
|
|
|
1a9869 |
- e.g. 'trac-admin /srv/lm-sensors.org/trac milestone completed 3.x.x now'
|
|
|
1a9869 |
-- Create a new version for the bug tracking system using trac-admin
|
|
|
1a9869 |
- e.g. 'trac-admin /srv/lm-sensors.org/trac version add 3.x.x now'
|
|
|
1a9869 |
-- Create a new release milestone using trac-admin
|
|
|
1a9869 |
- e.g. 'trac-admin /srv/lm-sensors.org/trac milestone add 3.x.x+1 2012-05-10'
|
|
|
1a9869 |
+- Add "+git" to version.h and commit
|
|
|
1a9869 |
- Send lm_sensors.lsm to the LSM by mailing it to lsm@qqx.org with the
|
|
|
1a9869 |
subject `add' (no quotes)
|
|
|
1a9869 |
-- Copy to mirrors
|
|
|
1a9869 |
diff --git a/doc/donations b/doc/donations
|
|
|
1a9869 |
index 92eea578..4a30c2d0 100644
|
|
|
1a9869 |
--- a/doc/donations
|
|
|
1a9869 |
+++ b/doc/donations
|
|
|
1a9869 |
@@ -12,7 +12,7 @@ so hardware which isn't directly related to the development of a hardware
|
|
|
1a9869 |
monitoring driver, but can be used to build test systems, is welcome too.
|
|
|
1a9869 |
|
|
|
1a9869 |
If you would like to make a donation, please contact us. See
|
|
|
1a9869 |
-http://www.lm-sensors.org/wiki/AuthorsAndContributors. Thanks!
|
|
|
1a9869 |
+https://hwmon.wiki.kernel.org/authorsandcontributors. Thanks!
|
|
|
1a9869 |
|
|
|
1a9869 |
|
|
|
1a9869 |
Donations are listed in chronological order. Note that the person mentioned
|
|
|
1a9869 |
diff --git a/doc/git b/doc/git
|
|
|
1a9869 |
new file mode 100644
|
|
|
1a9869 |
index 00000000..beeaedd8
|
|
|
1a9869 |
--- /dev/null
|
|
|
1a9869 |
+++ b/doc/git
|
|
|
1a9869 |
@@ -0,0 +1,22 @@
|
|
|
1a9869 |
+Git Repository
|
|
|
1a9869 |
+
|
|
|
1a9869 |
+Anonymous access to our git repository is available. This means
|
|
|
1a9869 |
+that users can have direct access to up-to-the-minute code.
|
|
|
1a9869 |
+
|
|
|
1a9869 |
+Driver development for kernel version 3 is taking place directly in the kernel
|
|
|
1a9869 |
+using git. The git repository is only used for user-space tools.
|
|
|
1a9869 |
+
|
|
|
1a9869 |
+We presume that you have git installed on your machine. To check out a
|
|
|
1a9869 |
+working copy of the code for this project use the following command:
|
|
|
1a9869 |
+
|
|
|
1a9869 |
+git clone https://github.com/lm-sensors/lm-sensors.git
|
|
|
1a9869 |
+
|
|
|
1a9869 |
+To update the code, do a git pull from within the lm-sensors directory.
|
|
|
1a9869 |
+Please read the README and INSTALL files of your working copy for how
|
|
|
1a9869 |
+to build the code. Also read the related files in the 'doc' directory
|
|
|
1a9869 |
+for info regarding the different bus and chip drivers. Lastly, you can use
|
|
|
1a9869 |
+the regular git commands on the files (like git log [filename]) to see the
|
|
|
1a9869 |
+comments made by the developers as changes were made.
|
|
|
1a9869 |
+
|
|
|
1a9869 |
+If you're not familiar with the use of we recommend the excellent
|
|
|
1a9869 |
+online git documentation at https://git-scm.com/doc.
|
|
|
1a9869 |
diff --git a/doc/progs b/doc/progs
|
|
|
1a9869 |
index 080f461f..0c5464df 100644
|
|
|
1a9869 |
--- a/doc/progs
|
|
|
1a9869 |
+++ b/doc/progs
|
|
|
1a9869 |
@@ -6,8 +6,11 @@ These programs are generally small utilities used for debugging,
|
|
|
1a9869 |
and installation of the lm_sensors package, and for demonstrating
|
|
|
1a9869 |
the use of the drivers and libraries in this package.
|
|
|
1a9869 |
For more elaborate programs (for example, GUI sensor displays),
|
|
|
1a9869 |
-see http://www.lm-sensors.org/wiki/UsefulLinks.
|
|
|
1a9869 |
-
|
|
|
1a9869 |
+see https://github.com/lm-sensors/lm-sensors/
|
|
|
1a9869 |
+ http://sensors-applet.sourceforge.net/
|
|
|
1a9869 |
+ https://01.org/powertop/
|
|
|
1a9869 |
+ https://wpitchoune.net/psensor/
|
|
|
1a9869 |
+ https://amanusk.github.io/s-tui/
|
|
|
1a9869 |
|
|
|
1a9869 |
* prog/daemon/healthd.sh (written in bash, not installed)
|
|
|
1a9869 |
An example of a very simple hardware health monitoring daemon.
|
|
|
1a9869 |
diff --git a/doc/svn b/doc/svn
|
|
|
1a9869 |
deleted file mode 100644
|
|
|
1a9869 |
index 2f0b1a84..00000000
|
|
|
1a9869 |
--- a/doc/svn
|
|
|
1a9869 |
+++ /dev/null
|
|
|
1a9869 |
@@ -1,31 +0,0 @@
|
|
|
1a9869 |
-Subversion Repository
|
|
|
1a9869 |
-
|
|
|
1a9869 |
-Anonymous access to our Subversion repository (SVN) is available. This means
|
|
|
1a9869 |
-that users can have direct access to up-to-the-minute code.
|
|
|
1a9869 |
-(http://subversion.tigris.org/)
|
|
|
1a9869 |
-
|
|
|
1a9869 |
-Driver development for kernel version 3 is taking place directly in the kernel
|
|
|
1a9869 |
-using GIT. Do not use the drivers from our SVN repository for kernel version
|
|
|
1a9869 |
-2.6 or 3, it will not work. The user-space tools will work though.
|
|
|
1a9869 |
-
|
|
|
1a9869 |
-We presume that you have Subversion installed on your machine. To check out a
|
|
|
1a9869 |
-working copy of the code for this project use the following commands:
|
|
|
1a9869 |
-
|
|
|
1a9869 |
-svn checkout http://lm-sensors.org/svn/i2c/trunk i2c
|
|
|
1a9869 |
-svn checkout http://lm-sensors.org/svn/lm-sensors/trunk lm-sensors
|
|
|
1a9869 |
-
|
|
|
1a9869 |
-To update the code, do a svn update from within the i2c or lm-sensors
|
|
|
1a9869 |
-directories. Please read the README and INSTALL files of your working copy
|
|
|
1a9869 |
-for how to build the code. Also read the related files in the 'doc' directory
|
|
|
1a9869 |
-for info regarding the different bus and chip drivers. Lastly, you can use
|
|
|
1a9869 |
-the regular svn commands on the files (like svn log [filename]) to see the
|
|
|
1a9869 |
-comments made by the developers as changes were made.
|
|
|
1a9869 |
-
|
|
|
1a9869 |
-If you're not familiar with the use of Subversion we recommend the excellent
|
|
|
1a9869 |
-Subversion book which is a valuable resource.
|
|
|
1a9869 |
-(http://svnbook.red-bean.com/)
|
|
|
1a9869 |
-
|
|
|
1a9869 |
-Commits to the repositories are notified on the lm-sensors-notify
|
|
|
1a9869 |
-mailing-list. Feel free to subscribe if you want to be informed of the
|
|
|
1a9869 |
-changes made to the i2c and lm-sensors repositories.
|
|
|
1a9869 |
-(http://lists.lm-sensors.org/mailman/listinfo/lm-sensors-notify)
|
|
|
1a9869 |
diff --git a/etc/sensors.conf.default b/etc/sensors.conf.default
|
|
|
1a9869 |
index 0365c6e5..f007e61a 100644
|
|
|
1a9869 |
--- a/etc/sensors.conf.default
|
|
|
1a9869 |
+++ b/etc/sensors.conf.default
|
|
|
1a9869 |
@@ -10,7 +10,7 @@
|
|
|
1a9869 |
# approach makes further updates much easier.
|
|
|
1a9869 |
#
|
|
|
1a9869 |
# Such custom configuration files for specific mainboards can be found at
|
|
|
1a9869 |
-# http://www.lm-sensors.org/wiki/Configurations
|
|
|
1a9869 |
+# https://github.com/lm-sensors/lm-sensors/tree/master/configs
|
|
|
1a9869 |
|
|
|
1a9869 |
chip "lm78-*" "lm79-*" "lm80-*" "lm96080-*"
|
|
|
1a9869 |
|
|
|
1a9869 |
diff --git a/etc/sensors.conf.eg b/etc/sensors.conf.eg
|
|
|
1a9869 |
index 309aad6d..d8f1dfdc 100644
|
|
|
1a9869 |
--- a/etc/sensors.conf.eg
|
|
|
1a9869 |
+++ b/etc/sensors.conf.eg
|
|
|
1a9869 |
@@ -2000,7 +2000,7 @@ chip "f71805f-*" "f71872f-*"
|
|
|
1a9869 |
# The configuration below is for the Kv8Pro and AV8 this is the default as this
|
|
|
1a9869 |
# driver is developed and tested on a Kv8Pro.
|
|
|
1a9869 |
# Configurations for many other Abit boards can be found at:
|
|
|
1a9869 |
-# http://www.lm-sensors.org/trac/wiki/Configurations/Abit
|
|
|
1a9869 |
+# https://github.com/lm-sensors/lm-sensors/tree/master/configs/Abit
|
|
|
1a9869 |
# If your motherboard isn't listed there and you create a configuration for it
|
|
|
1a9869 |
# please add it there.
|
|
|
1a9869 |
|
|
|
1a9869 |
@@ -2108,7 +2108,7 @@ chip "dme1737-*"
|
|
|
1a9869 |
# driver is developed and tested on an Epox EP-9U1697 GLI board.
|
|
|
1a9869 |
#
|
|
|
1a9869 |
# Premade configurations for other boards can be found at:
|
|
|
1a9869 |
-# http://www.lm-sensors.org/trac/wiki/Configurations/
|
|
|
1a9869 |
+# https://github.com/lm-sensors/lm-sensors/tree/master/configs
|
|
|
1a9869 |
# If your motherboard isn't listed there and you create a configuration for it
|
|
|
1a9869 |
# please add it there.
|
|
|
1a9869 |
#
|
|
|
1a9869 |
diff --git a/lib/libsensors.3 b/lib/libsensors.3
|
|
|
1a9869 |
index 399e90f4..23059bea 100644
|
|
|
1a9869 |
--- a/lib/libsensors.3
|
|
|
1a9869 |
+++ b/lib/libsensors.3
|
|
|
1a9869 |
@@ -274,5 +274,4 @@ sensors.conf(5)
|
|
|
1a9869 |
|
|
|
1a9869 |
.SH AUTHOR
|
|
|
1a9869 |
Frodo Looijaard, Jean Delvare and others
|
|
|
1a9869 |
-http://www.lm-sensors.org/
|
|
|
1a9869 |
-
|
|
|
1a9869 |
+https://hwmon.wiki.kernel.org/lm_sensors
|
|
|
1a9869 |
diff --git a/lib/sensors.conf.5 b/lib/sensors.conf.5
|
|
|
1a9869 |
index dbf1ba21..fa0414b0 100644
|
|
|
1a9869 |
--- a/lib/sensors.conf.5
|
|
|
1a9869 |
+++ b/lib/sensors.conf.5
|
|
|
1a9869 |
@@ -566,7 +566,4 @@ libsensors(3)
|
|
|
1a9869 |
|
|
|
1a9869 |
.SH AUTHOR
|
|
|
1a9869 |
Frodo Looijaard and the lm_sensors group
|
|
|
1a9869 |
-http://www.lm-sensors.org/
|
|
|
1a9869 |
-
|
|
|
1a9869 |
-
|
|
|
1a9869 |
-
|
|
|
1a9869 |
+https://hwmon.wiki.kernel.org/lm_sensors
|
|
|
1a9869 |
diff --git a/prog/detect/sensors-detect b/prog/detect/sensors-detect
|
|
|
1a9869 |
index fb6658c0..279caf80 100755
|
|
|
1a9869 |
--- a/prog/detect/sensors-detect
|
|
|
1a9869 |
+++ b/prog/detect/sensors-detect
|
|
|
1a9869 |
@@ -7004,7 +7004,7 @@ sub generate_modprobes
|
|
|
1a9869 |
next if not @{$chips_detected{$driver}};
|
|
|
1a9869 |
if ($driver eq "to-be-written") {
|
|
|
1a9869 |
print "Note: there is no driver for ${$chips_detected{$driver}}[0]{chipname} yet.\n".
|
|
|
1a9869 |
- "Check http://www.lm-sensors.org/wiki/Devices for updates.\n\n";
|
|
|
1a9869 |
+ "Check https://hwmon.wiki.kernel.org/device_support_status for updates.\n\n";
|
|
|
1a9869 |
} elsif (!is_module_builtin($driver)) {
|
|
|
1a9869 |
open(local *INPUTFILE, "modprobe -l $driver 2>/dev/null |");
|
|
|
1a9869 |
local $_;
|
|
|
1a9869 |
@@ -7020,7 +7020,7 @@ sub generate_modprobes
|
|
|
1a9869 |
# isn't supported
|
|
|
1a9869 |
if ((($? >> 8) == 0) && ! $modulefound) {
|
|
|
1a9869 |
print "Warning: the required module $driver is not currently installed\n".
|
|
|
1a9869 |
- "on your system. Check http://www.lm-sensors.org/wiki/Devices for\n".
|
|
|
1a9869 |
+ "on your system. Check https://hwmon.wiki.kernel.org/device_support_status for\n".
|
|
|
1a9869 |
"driver availability.\n\n";
|
|
|
1a9869 |
} else {
|
|
|
1a9869 |
$hwmon_modules{$driver}++
|
|
|
1a9869 |
@@ -7312,7 +7312,7 @@ sub main
|
|
|
1a9869 |
print "Either your system has no sensors, or they are not supported, or\n".
|
|
|
1a9869 |
"they are connected to an I2C or SMBus adapter that is not\n".
|
|
|
1a9869 |
"supported. If you find out what chips are on your board, check\n".
|
|
|
1a9869 |
- "http://www.lm-sensors.org/wiki/Devices for driver status.\n";
|
|
|
1a9869 |
+ "https://hwmon.wiki.kernel.org/device_support_status for driver status.\n";
|
|
|
1a9869 |
}
|
|
|
1a9869 |
exit;
|
|
|
1a9869 |
}
|
|
|
1a9869 |
diff --git a/prog/dump/isadump.8 b/prog/dump/isadump.8
|
|
|
1a9869 |
index 6bf5ea4a..1fa09fd0 100644
|
|
|
1a9869 |
--- a/prog/dump/isadump.8
|
|
|
1a9869 |
+++ b/prog/dump/isadump.8
|
|
|
1a9869 |
@@ -107,7 +107,7 @@ i2cdump(8), isaset(8)
|
|
|
1a9869 |
|
|
|
1a9869 |
.SH AUTHOR
|
|
|
1a9869 |
Frodo Looijaard, Mark D. Studebaker, and the lm_sensors group
|
|
|
1a9869 |
-(http://www.lm-sensors.org/)
|
|
|
1a9869 |
+(https://hwmon.wiki.kernel.org/lm_sensors)
|
|
|
1a9869 |
.PP
|
|
|
1a9869 |
This manual page was originally written by David Z Maze <dmaze@debian.org> for
|
|
|
1a9869 |
the Debian GNU/Linux system. It was then reviewed and augmented by the lm_sensors
|
|
|
1a9869 |
diff --git a/prog/dump/isaset.8 b/prog/dump/isaset.8
|
|
|
1a9869 |
index e7bcd5db..4051af9e 100644
|
|
|
1a9869 |
--- a/prog/dump/isaset.8
|
|
|
1a9869 |
+++ b/prog/dump/isaset.8
|
|
|
1a9869 |
@@ -77,7 +77,7 @@ i2cset(8), isadump(8)
|
|
|
1a9869 |
|
|
|
1a9869 |
.SH AUTHOR
|
|
|
1a9869 |
Mark D. Studebaker, and the lm_sensors group
|
|
|
1a9869 |
-(http://www.lm-sensors.org/)
|
|
|
1a9869 |
+(https://hwmon.wiki.kernel.org/lm_sensors)
|
|
|
1a9869 |
.PP
|
|
|
1a9869 |
This manual page was shamelessly ripped from the i2cset and isadump manual
|
|
|
1a9869 |
pages by Jean Delvare.
|
|
|
1a9869 |
diff --git a/prog/init/lm_sensors.init b/prog/init/lm_sensors.init
|
|
|
1a9869 |
index 77172d24..2ad58abc 100755
|
|
|
1a9869 |
--- a/prog/init/lm_sensors.init
|
|
|
1a9869 |
+++ b/prog/init/lm_sensors.init
|
|
|
1a9869 |
@@ -20,7 +20,7 @@
|
|
|
1a9869 |
# MA 02110-1301 USA.
|
|
|
1a9869 |
|
|
|
1a9869 |
# See also the lm_sensors homepage at:
|
|
|
1a9869 |
-# http://www.lm-sensors.org
|
|
|
1a9869 |
+# https://hwmon.wiki.kernel.org/lm_sensors
|
|
|
1a9869 |
|
|
|
1a9869 |
# It uses a config file /etc/sysconfig/lm_sensors that contains the modules
|
|
|
1a9869 |
# to be loaded/unloaded. That file is sourced into this one.
|
|
|
1a9869 |
diff --git a/prog/rrd/sens_day.in b/prog/rrd/sens_day.in
|
|
|
1a9869 |
index 75dc13bd..15412f2b 100644
|
|
|
1a9869 |
--- a/prog/rrd/sens_day.in
|
|
|
1a9869 |
+++ b/prog/rrd/sens_day.in
|
|
|
1a9869 |
@@ -217,7 +217,7 @@ See also:
|
|
|
1a9869 |
|
|
|
1a9869 |
|
|
|
1a9869 |
This page generated with data and scripts from
|
|
|
1a9869 |
-the lm_sensors project;
|
|
|
1a9869 |
+the lm_sensors project;
|
|
|
1a9869 |
the data are stored in a Round Robin Database and
|
|
|
1a9869 |
the graphs are generated by
|
|
|
1a9869 |
|
|
|
1a9869 |
diff --git a/prog/rrd/sens_week.in b/prog/rrd/sens_week.in
|
|
|
1a9869 |
index cce50555..2b92f655 100644
|
|
|
1a9869 |
--- a/prog/rrd/sens_week.in
|
|
|
1a9869 |
+++ b/prog/rrd/sens_week.in
|
|
|
1a9869 |
@@ -217,7 +217,7 @@ See also:
|
|
|
1a9869 |
|
|
|
1a9869 |
|
|
|
1a9869 |
This page generated with data and scripts from
|
|
|
1a9869 |
-the lm_sensors project;
|
|
|
1a9869 |
+the lm_sensors project;
|
|
|
1a9869 |
the data are stored in a Round Robin Database and
|
|
|
1a9869 |
the graphs are generated by
|
|
|
1a9869 |
|
|
|
1a9869 |
diff --git a/prog/rrd/summ_week.in b/prog/rrd/summ_week.in
|
|
|
1a9869 |
index 713197dc..7051d5f0 100644
|
|
|
1a9869 |
--- a/prog/rrd/summ_week.in
|
|
|
1a9869 |
+++ b/prog/rrd/summ_week.in
|
|
|
1a9869 |
@@ -89,7 +89,7 @@ See also:
|
|
|
1a9869 |
|
|
|
1a9869 |
|
|
|
1a9869 |
This page generated with data and scripts from
|
|
|
1a9869 |
-the lm_sensors project;
|
|
|
1a9869 |
+the lm_sensors project;
|
|
|
1a9869 |
the data are stored in a Round Robin Database and
|
|
|
1a9869 |
the graphs are generated by
|
|
|
1a9869 |
|
|
|
1a9869 |
diff --git a/prog/sensord/rrd.c b/prog/sensord/rrd.c
|
|
|
1a9869 |
index 3cde7f18..a531362b 100644
|
|
|
1a9869 |
--- a/prog/sensord/rrd.c
|
|
|
1a9869 |
+++ b/prog/sensord/rrd.c
|
|
|
1a9869 |
@@ -498,7 +498,8 @@ int rrdCGI(void)
|
|
|
1a9869 |
printf("\n<small>sensord by "
|
|
|
1a9869 |
"Merlin Hughes"
|
|
|
1a9869 |
", all credit to the "
|
|
|
1a9869 |
- "lm_sensors "
|
|
|
1a9869 |
+ ""
|
|
|
1a9869 |
+ "lm_sensors "
|
|
|
1a9869 |
"crew.</small>\n\n");
|
|
|
1a9869 |
|
|
|
1a9869 |
printf("</body>\n</html>\n");
|
|
|
1a9869 |
diff --git a/prog/sensors/sensors.1 b/prog/sensors/sensors.1
|
|
|
1a9869 |
index c787e4a2..16d3e61b 100644
|
|
|
1a9869 |
--- a/prog/sensors/sensors.1
|
|
|
1a9869 |
+++ b/prog/sensors/sensors.1
|
|
|
1a9869 |
@@ -91,6 +91,6 @@ sensors.conf(5)
|
|
|
1a9869 |
|
|
|
1a9869 |
.SH AUTHOR
|
|
|
1a9869 |
Frodo Looijaard and the lm_sensors group
|
|
|
1a9869 |
-http://www.lm-sensors.org/
|
|
|
1a9869 |
+https://hwmon.wiki.kernel.org/lm_sensors
|
|
|
1a9869 |
|
|
|
1a9869 |
|
|
|
1a9869 |
diff --git a/prog/tellerstats/index.shtml b/prog/tellerstats/index.shtml
|
|
|
1a9869 |
index 60c8ca14..1b71376e 100644
|
|
|
1a9869 |
--- a/prog/tellerstats/index.shtml
|
|
|
1a9869 |
+++ b/prog/tellerstats/index.shtml
|
|
|
1a9869 |
@@ -40,7 +40,7 @@ These plots were generated
|
|
|
1a9869 |
|
|
|
1a9869 |
|
|
|
1a9869 |
This page generated with drivers and the tellerstats scripts from
|
|
|
1a9869 |
-The lm_sensors drivers.
|
|
|
1a9869 |
+The lm_sensors drivers.
|
|
|
1a9869 |
|
|
|
1a9869 |
|
|
|
1a9869 |
|
|
|
1a9869 |
--
|
|
|
1a9869 |
2.20.1
|
|
|
1a9869 |
|