summaryrefslogtreecommitdiffstats
path: root/util/nvramtool
diff options
context:
space:
mode:
authorPaul Menzel <paulepanter@users.sourceforge.net>2017-06-05 12:33:23 +0200
committerPatrick Georgi <pgeorgi@google.com>2017-06-07 12:04:50 +0200
commita8843dee58d15de6860b682975ee01ee61893670 (patch)
treef26fe56b7ddf2452dadd6a9de88819d789410f91 /util/nvramtool
parent619e83045a3dfc189cf12b2f755b7a888c428382 (diff)
downloadcoreboot-a8843dee58d15de6860b682975ee01ee61893670.tar.gz
coreboot-a8843dee58d15de6860b682975ee01ee61893670.tar.bz2
coreboot-a8843dee58d15de6860b682975ee01ee61893670.zip
Use more secure HTTPS URLs for coreboot sites
The coreboot sites support HTTPS, and requests over HTTP with SSL are also redirected. So use the more secure URLs, which also saves a request most of the times, as nothing needs to be redirected. Run the command below to replace all occurences. ``` $ git grep -l -E 'http://(www.|review.|)coreboot.org' | xargs sed -i 's,http://\(.*\)coreboot.org,https://\1coreboot.org,g' ``` Change-Id: If53f8b66f1ac72fb1a38fa392b26eade9963c369 Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-on: https://review.coreboot.org/20034 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'util/nvramtool')
-rw-r--r--util/nvramtool/DISCLAIMER2
-rw-r--r--util/nvramtool/README2
-rw-r--r--util/nvramtool/accessors/layout-bin.c2
-rw-r--r--util/nvramtool/accessors/layout-common.c2
-rw-r--r--util/nvramtool/accessors/layout-text.c2
-rw-r--r--util/nvramtool/accessors/layout-text.h2
-rw-r--r--util/nvramtool/cli/nvramtool.84
-rw-r--r--util/nvramtool/cli/nvramtool.c2
-rw-r--r--util/nvramtool/cli/opts.c2
-rw-r--r--util/nvramtool/cli/opts.h2
-rw-r--r--util/nvramtool/cmos_lowlevel.c2
-rw-r--r--util/nvramtool/cmos_lowlevel.h2
-rw-r--r--util/nvramtool/cmos_ops.c2
-rw-r--r--util/nvramtool/cmos_ops.h2
-rw-r--r--util/nvramtool/common.c2
-rw-r--r--util/nvramtool/common.h2
-rw-r--r--util/nvramtool/compute_ip_checksum.c2
-rw-r--r--util/nvramtool/coreboot_tables.h2
-rw-r--r--util/nvramtool/input_file.c2
-rw-r--r--util/nvramtool/input_file.h2
-rw-r--r--util/nvramtool/ip_checksum.h2
-rw-r--r--util/nvramtool/layout.c2
-rw-r--r--util/nvramtool/layout.h2
-rw-r--r--util/nvramtool/lbtable.c2
-rw-r--r--util/nvramtool/lbtable.h2
-rw-r--r--util/nvramtool/reg_expr.c2
-rw-r--r--util/nvramtool/reg_expr.h2
27 files changed, 28 insertions, 28 deletions
diff --git a/util/nvramtool/DISCLAIMER b/util/nvramtool/DISCLAIMER
index 290ab52249b8..bed93be4f3fb 100644
--- a/util/nvramtool/DISCLAIMER
+++ b/util/nvramtool/DISCLAIMER
@@ -10,7 +10,7 @@ All rights reserved.
This file is part of nvramtool, a utility for reading/writing coreboot
parameters and displaying information from the coreboot table.
-For details, see http://coreboot.org/nvramtool.
+For details, see https://coreboot.org/nvramtool.
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License (as published by the
diff --git a/util/nvramtool/README b/util/nvramtool/README
index 183b84c0428a..4d4b38fc40cc 100644
--- a/util/nvramtool/README
+++ b/util/nvramtool/README
@@ -10,7 +10,7 @@ contains various system information such as the type of mainboard in use. It
specifies locations in the CMOS (nonvolatile RAM) where the coreboot
parameters are stored.
-For information about coreboot, see http://www.coreboot.org/.
+For information about coreboot, see https://www.coreboot.org/.
Ideas for Future Improvements
-----------------------------
diff --git a/util/nvramtool/accessors/layout-bin.c b/util/nvramtool/accessors/layout-bin.c
index 9f92283480cd..e545dc51a77e 100644
--- a/util/nvramtool/accessors/layout-bin.c
+++ b/util/nvramtool/accessors/layout-bin.c
@@ -16,7 +16,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/accessors/layout-common.c b/util/nvramtool/accessors/layout-common.c
index 22a81faa209a..7dcfd3ebedbd 100644
--- a/util/nvramtool/accessors/layout-common.c
+++ b/util/nvramtool/accessors/layout-common.c
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/accessors/layout-text.c b/util/nvramtool/accessors/layout-text.c
index f2735b9e35e3..9567b7f53deb 100644
--- a/util/nvramtool/accessors/layout-text.c
+++ b/util/nvramtool/accessors/layout-text.c
@@ -15,7 +15,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/accessors/layout-text.h b/util/nvramtool/accessors/layout-text.h
index 6232e735bd3e..abbd414964e9 100644
--- a/util/nvramtool/accessors/layout-text.h
+++ b/util/nvramtool/accessors/layout-text.h
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/cli/nvramtool.8 b/util/nvramtool/cli/nvramtool.8
index 8c4e2dc63415..1737c4eaa7b4 100644
--- a/util/nvramtool/cli/nvramtool.8
+++ b/util/nvramtool/cli/nvramtool.8
@@ -9,7 +9,7 @@
.\"
.\" This file is part of nvramtool, a utility for reading/writing coreboot
.\" parameters and displaying information from the coreboot table.
-.\" For details, see http://coreboot.org/nvramtool.
+.\" For details, see https://coreboot.org/nvramtool.
.\"
.\" Please also read the file DISCLAIMER which is included in this software
.\" distribution.
@@ -71,7 +71,7 @@ where the coreboot parameters are stored.
This program is intended for (x86-based) systems that use coreboot. For
information about coreboot, see
.br
-http://www.coreboot.org/.
+https://www.coreboot.org/.
.SH PARAMETERS
.TP
.B "[-n] -r NAME"
diff --git a/util/nvramtool/cli/nvramtool.c b/util/nvramtool/cli/nvramtool.c
index 7f5fba8199e1..9181800e30b9 100644
--- a/util/nvramtool/cli/nvramtool.c
+++ b/util/nvramtool/cli/nvramtool.c
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/cli/opts.c b/util/nvramtool/cli/opts.c
index 8b62a47c83a7..d4ea9ce3f5e0 100644
--- a/util/nvramtool/cli/opts.c
+++ b/util/nvramtool/cli/opts.c
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/cli/opts.h b/util/nvramtool/cli/opts.h
index 480049224258..e6bd1f66a239 100644
--- a/util/nvramtool/cli/opts.h
+++ b/util/nvramtool/cli/opts.h
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/cmos_lowlevel.c b/util/nvramtool/cmos_lowlevel.c
index 7221f2393ece..eadda62ce881 100644
--- a/util/nvramtool/cmos_lowlevel.c
+++ b/util/nvramtool/cmos_lowlevel.c
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/cmos_lowlevel.h b/util/nvramtool/cmos_lowlevel.h
index 329a1ae01d4d..2b10ae3a04e3 100644
--- a/util/nvramtool/cmos_lowlevel.h
+++ b/util/nvramtool/cmos_lowlevel.h
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/cmos_ops.c b/util/nvramtool/cmos_ops.c
index 6f616a033522..3c5a08b2d9e3 100644
--- a/util/nvramtool/cmos_ops.c
+++ b/util/nvramtool/cmos_ops.c
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/cmos_ops.h b/util/nvramtool/cmos_ops.h
index 10185c6b9426..12a11b6c963e 100644
--- a/util/nvramtool/cmos_ops.h
+++ b/util/nvramtool/cmos_ops.h
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/common.c b/util/nvramtool/common.c
index adb5613f8e1c..8ae6ea86f796 100644
--- a/util/nvramtool/common.c
+++ b/util/nvramtool/common.c
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/common.h b/util/nvramtool/common.h
index 489381f46f7c..559e80f12b9b 100644
--- a/util/nvramtool/common.h
+++ b/util/nvramtool/common.h
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/compute_ip_checksum.c b/util/nvramtool/compute_ip_checksum.c
index f19e94387a7f..240da431e348 100644
--- a/util/nvramtool/compute_ip_checksum.c
+++ b/util/nvramtool/compute_ip_checksum.c
@@ -6,7 +6,7 @@
#include "ip_checksum.h"
/* Note: The contents of this file were borrowed from the coreboot source
- * code which may be obtained from http://www.coreboot.org.
+ * code which may be obtained from https://www.coreboot.org.
* Specifically, this code was obtained from coreboot (LinuxBIOS)
* version 1.0.0.8.
*/
diff --git a/util/nvramtool/coreboot_tables.h b/util/nvramtool/coreboot_tables.h
index 22570ac1f63e..1bd1e53239e6 100644
--- a/util/nvramtool/coreboot_tables.h
+++ b/util/nvramtool/coreboot_tables.h
@@ -8,7 +8,7 @@
#include <stdint.h>
/* Note: The contents of this file were borrowed from the coreboot source
- * code which may be obtained from http://www.coreboot.org/.
+ * code which may be obtained from https://www.coreboot.org/.
* Specifically, this code was obtained from LinuxBIOS version 1.1.8.
*/
diff --git a/util/nvramtool/input_file.c b/util/nvramtool/input_file.c
index cce9a10894c8..730ea37c095f 100644
--- a/util/nvramtool/input_file.c
+++ b/util/nvramtool/input_file.c
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/input_file.h b/util/nvramtool/input_file.h
index 5f860d1b1e6a..0fce720f9786 100644
--- a/util/nvramtool/input_file.h
+++ b/util/nvramtool/input_file.h
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/ip_checksum.h b/util/nvramtool/ip_checksum.h
index f2a13070a3a9..19f342885d0d 100644
--- a/util/nvramtool/ip_checksum.h
+++ b/util/nvramtool/ip_checksum.h
@@ -6,7 +6,7 @@
#define IP_CHECKSUM_H
/* Note: The contents of this file were borrowed from the coreboot source
- * code which may be obtained from http://www.coreboot.org.
+ * code which may be obtained from https://www.coreboot.org.
* Specifically, this code was obtained from coreboot (LinuxBIOS)
* version 1.0.0.8.
*/
diff --git a/util/nvramtool/layout.c b/util/nvramtool/layout.c
index 6fdb28216b1c..a340671caa41 100644
--- a/util/nvramtool/layout.c
+++ b/util/nvramtool/layout.c
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/layout.h b/util/nvramtool/layout.h
index bde060393b00..a75654b8169e 100644
--- a/util/nvramtool/layout.h
+++ b/util/nvramtool/layout.h
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/lbtable.c b/util/nvramtool/lbtable.c
index 5db61c507d60..d2ae1b5c9120 100644
--- a/util/nvramtool/lbtable.c
+++ b/util/nvramtool/lbtable.c
@@ -10,7 +10,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/lbtable.h b/util/nvramtool/lbtable.h
index ea1d1411c268..60609a99b3de 100644
--- a/util/nvramtool/lbtable.h
+++ b/util/nvramtool/lbtable.h
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/reg_expr.c b/util/nvramtool/reg_expr.c
index 0e9baca909f1..5be80fcc034b 100644
--- a/util/nvramtool/reg_expr.c
+++ b/util/nvramtool/reg_expr.c
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.
diff --git a/util/nvramtool/reg_expr.h b/util/nvramtool/reg_expr.h
index 08c9070e165f..553c96a45de9 100644
--- a/util/nvramtool/reg_expr.h
+++ b/util/nvramtool/reg_expr.h
@@ -9,7 +9,7 @@
*
* This file is part of nvramtool, a utility for reading/writing coreboot
* parameters and displaying information from the coreboot table.
- * For details, see http://coreboot.org/nvramtool.
+ * For details, see https://coreboot.org/nvramtool.
*
* Please also read the file DISCLAIMER which is included in this software
* distribution.