Blame SOURCES/0001-Fix-stale-links-and-outdated-info.patch

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

7ca109
 
7ca109
 This page generated with data and scripts from
7ca109
-the lm_sensors project;
7ca109
+the lm_sensors project;
7ca109
 the data are stored in a Round Robin Database and
7ca109
 the graphs are generated by
7ca109
 
7ca109
diff --git a/prog/rrd/sens_week.in b/prog/rrd/sens_week.in
7ca109
index cce50555..2b92f655 100644
7ca109
--- a/prog/rrd/sens_week.in
7ca109
+++ b/prog/rrd/sens_week.in
7ca109
@@ -217,7 +217,7 @@ See also: 
7ca109
 

7ca109
 
7ca109
 This page generated with data and scripts from
7ca109
-the lm_sensors project;
7ca109
+the lm_sensors project;
7ca109
 the data are stored in a Round Robin Database and
7ca109
 the graphs are generated by
7ca109
 
7ca109
diff --git a/prog/rrd/summ_week.in b/prog/rrd/summ_week.in
7ca109
index 713197dc..7051d5f0 100644
7ca109
--- a/prog/rrd/summ_week.in
7ca109
+++ b/prog/rrd/summ_week.in
7ca109
@@ -89,7 +89,7 @@ See also: 
7ca109
 

7ca109
 
7ca109
 This page generated with data and scripts from
7ca109
-the lm_sensors project;
7ca109
+the lm_sensors project;
7ca109
 the data are stored in a Round Robin Database and
7ca109
 the graphs are generated by
7ca109
 
7ca109
diff --git a/prog/sensord/rrd.c b/prog/sensord/rrd.c
7ca109
index 3cde7f18..a531362b 100644
7ca109
--- a/prog/sensord/rrd.c
7ca109
+++ b/prog/sensord/rrd.c
7ca109
@@ -498,7 +498,8 @@ int rrdCGI(void)
7ca109
 	printf("

\n<small>sensord by "

7ca109
 	       "Merlin Hughes"
7ca109
 	       ", all credit to the "
7ca109
-	       "lm_sensors "
7ca109
+	       ""
7ca109
+	       "lm_sensors "
7ca109
 	       "crew.</small>\n

\n");
7ca109
 
7ca109
 	printf("</body>\n</html>\n");
7ca109
diff --git a/prog/sensors/sensors.1 b/prog/sensors/sensors.1
7ca109
index c787e4a2..16d3e61b 100644
7ca109
--- a/prog/sensors/sensors.1
7ca109
+++ b/prog/sensors/sensors.1
7ca109
@@ -91,6 +91,6 @@ sensors.conf(5)
7ca109
 
7ca109
 .SH AUTHOR
7ca109
 Frodo Looijaard and the lm_sensors group
7ca109
-http://www.lm-sensors.org/
7ca109
+https://hwmon.wiki.kernel.org/lm_sensors
7ca109
 
7ca109
 
7ca109
diff --git a/prog/tellerstats/index.shtml b/prog/tellerstats/index.shtml
7ca109
index 60c8ca14..1b71376e 100644
7ca109
--- a/prog/tellerstats/index.shtml
7ca109
+++ b/prog/tellerstats/index.shtml
7ca109
@@ -40,7 +40,7 @@ These plots were generated 
7ca109
 

7ca109
 
7ca109
 This page generated with drivers and the tellerstats scripts from
7ca109
-The lm_sensors drivers.
7ca109
+The lm_sensors drivers.
7ca109
 
7ca109
 

7ca109
 
7ca109
-- 
7ca109
2.20.1
7ca109