* [Buildroot] [PATCH] docs/website: switch HTTP links to HTTPS Update outdated insecure http links to https for buildroot.org, eLinux wiki, autobuild, and git-scm. Also fix downloads host from buildroot.net to buildroot.org.This reduces mixed-content issues and keeps references current.
@ 2025-12-20 11:17 Preyas via buildroot
2026-01-04 10:52 ` Thomas Petazzoni via buildroot
0 siblings, 1 reply; 2+ messages in thread
From: Preyas via buildroot @ 2025-12-20 11:17 UTC (permalink / raw)
To: buildroot; +Cc: Preyas Sharma
From: Preyas Sharma <preyas17@zohomail.in>
---
README | 2 +-
docs/website/contribute.html | 8 ++++----
docs/website/download.html | 4 ++--
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/README b/README
index 008e996f5f..143b476be6 100644
--- a/README
+++ b/README
@@ -3,7 +3,7 @@ Linux systems through cross-compilation.
The documentation can be found in docs/manual. You can generate a text
document with 'make manual-text' and read output/docs/manual/manual.text.
-Online documentation can be found at http://buildroot.org/docs.html
+Online documentation can be found at https://buildroot.org/docs.html
To build and use the buildroot stuff, do the following:
diff --git a/docs/website/contribute.html b/docs/website/contribute.html
index 52c30d60d3..1b6b3d6110 100644
--- a/docs/website/contribute.html
+++ b/docs/website/contribute.html
@@ -14,22 +14,22 @@
<ul>
<li>Reproducing, analyzing and fixing bugs from our
<a href="https://gitlab.com/buildroot.org/buildroot/-/issues">bug tracker</a></li>
- <li>Analyzing and fixing <a href="http://autobuild.buildroot.org/">
+ <li>Analyzing and fixing <a href="https://autobuild.buildroot.org/">
autobuild failures</a></li>
<li>Reviewing and testing patches sent by other developers. See the
<a href="http://lists.buildroot.org/mailman/listinfo/buildroot">mailing list
</a> or <a href="https://patchwork.ozlabs.org/project/buildroot/list/">
patchwork</a>.</li>
<li>Working on items from the
- <a href="http://www.elinux.org/Buildroot#Todo_list">TODO list</a></li>
- <li><a href="http://buildroot.org/manual.html#submitting-patches">Submitting
+ <a href="https://www.elinux.org/Buildroot#Todo_list">TODO list</a></li>
+ <li><a href="https://buildroot.org/manual.html#submitting-patches">Submitting
your own patches</a> through the
<a href="http://lists.buildroot.org/mailman/listinfo/buildroot">mailing list
</a></li>
</ul>
<p>For more details on these topics, check out the
- <a href="http://buildroot.org/manual.html#_contributing_to_buildroot">
+ <a href="https://buildroot.org/manual.html#_contributing_to_buildroot">
Contributing to buildroot</a> chapter in the Buildroot manual. Thanks for your help!</p>
<p>If you need any support yourself, have a look at <a href="./support.html">
diff --git a/docs/website/download.html b/docs/website/download.html
index d1d92c8e6b..46e5fde824 100644
--- a/docs/website/download.html
+++ b/docs/website/download.html
@@ -98,7 +98,7 @@
</table>
This and earlier releases (and their PGP signatures) can always be downloaded from
- <a href="/downloads/">http://buildroot.net/downloads/</a>.
+ <a href="/downloads/">https://buildroot.org/downloads/</a>.
</div>
</div>
@@ -123,7 +123,7 @@
</div><br>
<p>If you are not already familiar with using Git, we recommend
- you visit <a href="http://git-scm.org">the Git
+ you visit <a href="https://git-scm.org">the Git
website</a>.</p>
<p>Once you've checked out a copy of the source tree, you can
--
2.43.0
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [Buildroot] [PATCH] docs/website: switch HTTP links to HTTPS Update outdated insecure http links to https for buildroot.org, eLinux wiki, autobuild, and git-scm. Also fix downloads host from buildroot.net to buildroot.org.This reduces mixed-content issues and keeps references current.
2025-12-20 11:17 [Buildroot] [PATCH] docs/website: switch HTTP links to HTTPS Update outdated insecure http links to https for buildroot.org, eLinux wiki, autobuild, and git-scm. Also fix downloads host from buildroot.net to buildroot.org.This reduces mixed-content issues and keeps references current Preyas via buildroot
@ 2026-01-04 10:52 ` Thomas Petazzoni via buildroot
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni via buildroot @ 2026-01-04 10:52 UTC (permalink / raw)
To: Preyas via buildroot; +Cc: Preyas
Hello Preyas,
On Sat, 20 Dec 2025 11:17:07 +0000
Preyas via buildroot <buildroot@buildroot.org> wrote:
> From: Preyas Sharma <preyas17@zohomail.in>
Thanks for your patch. However, the commit title is a bit messed up as
it is way too long. You might want to learn about the difference
between the commit "title" and the commit "body". Check for example
https://www.conventionalcommits.org/en/v1.0.0/.
Also, we cannot apply your patch as it is missing your Signed-off-by
line.
> <p>If you are not already familiar with using Git, we recommend
> - you visit <a href="http://git-scm.org">the Git
> + you visit <a href="https://git-scm.org">the Git
There is some spurious/unrelated indentation change here.
Could you rework your patch and send a new iteration?
Thanks a lot!
Thomas
--
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-01-04 14:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-20 11:17 [Buildroot] [PATCH] docs/website: switch HTTP links to HTTPS Update outdated insecure http links to https for buildroot.org, eLinux wiki, autobuild, and git-scm. Also fix downloads host from buildroot.net to buildroot.org.This reduces mixed-content issues and keeps references current Preyas via buildroot
2026-01-04 10:52 ` Thomas Petazzoni via buildroot
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.