All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i2c-tools 0/2] treewide: update hyperlinks
@ 2026-05-29 20:51 Wolfram Sang
  2026-05-29 20:51 ` [PATCH i2c-tools 1/2] treewide: use https instead of http where applicable Wolfram Sang
  2026-05-29 20:51 ` [PATCH i2c-tools 2/2] treewide: update outdated links Wolfram Sang
  0 siblings, 2 replies; 5+ messages in thread
From: Wolfram Sang @ 2026-05-29 20:51 UTC (permalink / raw)
  To: linux-i2c; +Cc: Jean Delvare, Wolfram Sang

While looking for i2c-tools related bug reports in distributions, I
found one report mentioning the outdated use of http. Patch 1 fixes
this. It further made me check all links and update outdated ones. This
is done in patch 2.

Wolfram Sang (2):
  treewide: use https instead of http where applicable
  treewide: update outdated links

 README              | 7 +++++--
 eeprom/decode-dimms | 4 ++--
 eeprom/decode-vaio  | 2 +-
 3 files changed, 8 insertions(+), 5 deletions(-)

-- 
2.51.0


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH i2c-tools 1/2] treewide: use https instead of http where applicable
  2026-05-29 20:51 [PATCH i2c-tools 0/2] treewide: update hyperlinks Wolfram Sang
@ 2026-05-29 20:51 ` Wolfram Sang
  2026-06-10 20:55   ` Wolfram Sang
  2026-05-29 20:51 ` [PATCH i2c-tools 2/2] treewide: update outdated links Wolfram Sang
  1 sibling, 1 reply; 5+ messages in thread
From: Wolfram Sang @ 2026-05-29 20:51 UTC (permalink / raw)
  To: linux-i2c; +Cc: Jean Delvare, Wolfram Sang

Closes: https://bugzilla.redhat.com/show_bug.cgi?id=2388757 # Issue 2
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
 README              | 2 +-
 eeprom/decode-dimms | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/README b/README
index 2d342e5..599058f 100644
--- a/README
+++ b/README
@@ -105,7 +105,7 @@ Please post your questions and bug reports to the linux-i2c mailing list:
 with Cc to the current maintainer:
   Jean Delvare <jdelvare@suse.de>
 For additional information about this list, see:
-  http://vger.kernel.org/vger-lists.html#linux-i2c
+  https://vger.kernel.org/vger-lists.html#linux-i2c
 
 CONTRIBUTIONS
 -------------
diff --git a/eeprom/decode-dimms b/eeprom/decode-dimms
index 32e840a..7682345 100755
--- a/eeprom/decode-dimms
+++ b/eeprom/decode-dimms
@@ -2703,8 +2703,8 @@ if (!$opt_igncheck) {
 
 
 if ($opt_html && !$opt_bodyonly) {
-	print "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.1//EN' \"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">\n\n",
-	      "<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"en\">\n",
+	print "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.1//EN' \"https://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">\n\n",
+	      "<html xmlns=\"https://www.w3.org/1999/xhtml\" lang=\"en\">\n",
 	      "<head>\n",
 	      "\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\" />\n",
 	      "\t<title>PC DIMM Serial Presence Detect Tester/Decoder Output</title>\n",
-- 
2.51.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH i2c-tools 2/2] treewide: update outdated links
  2026-05-29 20:51 [PATCH i2c-tools 0/2] treewide: update hyperlinks Wolfram Sang
  2026-05-29 20:51 ` [PATCH i2c-tools 1/2] treewide: use https instead of http where applicable Wolfram Sang
@ 2026-05-29 20:51 ` Wolfram Sang
  2026-06-10 20:55   ` Wolfram Sang
  1 sibling, 1 reply; 5+ messages in thread
From: Wolfram Sang @ 2026-05-29 20:51 UTC (permalink / raw)
  To: linux-i2c; +Cc: Jean Delvare, Wolfram Sang

Jean's page has moved, point to the new one. The I2C wiki is stale,
point to the download folder. Add a link to the git repo while here.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
 README             | 5 ++++-
 eeprom/decode-vaio | 2 +-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/README b/README
index 599058f..502132f 100644
--- a/README
+++ b/README
@@ -9,7 +9,10 @@ applications. The tools and library compile, run and have been tested on
 GNU/Linux.
 
 The latest version of the code can be downloaded from:
-  https://i2c.wiki.kernel.org/index.php/I2C_Tools
+  https://www.kernel.org/pub/software/utils/i2c-tools/
+
+The main repository can be found here:
+  https://git.kernel.org/pub/scm/utils/i2c-tools/i2c-tools.git/
 
 
 CONTENTS
diff --git a/eeprom/decode-vaio b/eeprom/decode-vaio
index 74ab633..a3cb391 100755
--- a/eeprom/decode-vaio
+++ b/eeprom/decode-vaio
@@ -20,7 +20,7 @@
 # Please note that this is a guess-only work.  Sony support refused to help
 # me, so if someone can provide information, please contact me.
 # My knowledge is summarized on this page:
-# http://jdelvare.nerim.net/articles/vaio/eeprom.html
+# http://jean.delvare.free.fr/articles/vaio/eeprom.html
 #
 # It seems that if present, the EEPROM is always at 0x57.
 #
-- 
2.51.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH i2c-tools 1/2] treewide: use https instead of http where applicable
  2026-05-29 20:51 ` [PATCH i2c-tools 1/2] treewide: use https instead of http where applicable Wolfram Sang
@ 2026-06-10 20:55   ` Wolfram Sang
  0 siblings, 0 replies; 5+ messages in thread
From: Wolfram Sang @ 2026-06-10 20:55 UTC (permalink / raw)
  To: linux-i2c; +Cc: Jean Delvare

[-- Attachment #1: Type: text/plain, Size: 210 bytes --]

On Fri, May 29, 2026 at 10:51:46PM +0200, Wolfram Sang wrote:
> Closes: https://bugzilla.redhat.com/show_bug.cgi?id=2388757 # Issue 2
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>

Applied!


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH i2c-tools 2/2] treewide: update outdated links
  2026-05-29 20:51 ` [PATCH i2c-tools 2/2] treewide: update outdated links Wolfram Sang
@ 2026-06-10 20:55   ` Wolfram Sang
  0 siblings, 0 replies; 5+ messages in thread
From: Wolfram Sang @ 2026-06-10 20:55 UTC (permalink / raw)
  To: linux-i2c; +Cc: Jean Delvare

[-- Attachment #1: Type: text/plain, Size: 290 bytes --]

On Fri, May 29, 2026 at 10:51:47PM +0200, Wolfram Sang wrote:
> Jean's page has moved, point to the new one. The I2C wiki is stale,
> point to the download folder. Add a link to the git repo while here.
> 
> Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>

Applied!


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2026-06-10 20:55 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-29 20:51 [PATCH i2c-tools 0/2] treewide: update hyperlinks Wolfram Sang
2026-05-29 20:51 ` [PATCH i2c-tools 1/2] treewide: use https instead of http where applicable Wolfram Sang
2026-06-10 20:55   ` Wolfram Sang
2026-05-29 20:51 ` [PATCH i2c-tools 2/2] treewide: update outdated links Wolfram Sang
2026-06-10 20:55   ` Wolfram Sang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.