Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] docs/manual/getting: fix dead link
@ 2025-09-21 12:39 Alexis Lothoré via buildroot
  2025-09-21 13:15 ` Baruch Siach via buildroot
  0 siblings, 1 reply; 5+ messages in thread
From: Alexis Lothoré via buildroot @ 2025-09-21 12:39 UTC (permalink / raw)
  To: buildroot; +Cc: Thomas Petazzoni, Alexis Lothoré

When searching for the official git repository in the documentation,
readers are forwarded to the buildroot website Download page with a link
pointing to buildroot.org/download, which returns a 404.

Fix the dead link by adding the missing .html suffix.

Signed-off-by: Alexis Lothoré <alexis.lothore@bootlin.com>
---
 docs/manual/getting.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/manual/getting.adoc b/docs/manual/getting.adoc
index 51c97d57931058082b426d19b5bef6c74d1f8a5d..1437a3ccef2349965710e785a87f078224025b5d 100644
--- a/docs/manual/getting.adoc
+++ b/docs/manual/getting.adoc
@@ -32,5 +32,5 @@ vagrant up
 
 If you want to follow development, you can use the daily snapshots or
 make a clone of the Git repository. Refer to the
-http://buildroot.org/download[Download page] of the Buildroot website
+http://buildroot.org/download.html[Download page] of the Buildroot website
 for more details.

---
base-commit: 5d2abdc66ca687c926e1c4546c12aca7f7d72ca4
change-id: 20250921-fix_doc_dead_link-ce9ed4e84172

Best regards,
-- 
Alexis Lothoré, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] docs/manual/getting: fix dead link
  2025-09-21 12:39 [Buildroot] [PATCH] docs/manual/getting: fix dead link Alexis Lothoré via buildroot
@ 2025-09-21 13:15 ` Baruch Siach via buildroot
  2025-09-22 14:11   ` Alexis Lothoré via buildroot
  0 siblings, 1 reply; 5+ messages in thread
From: Baruch Siach via buildroot @ 2025-09-21 13:15 UTC (permalink / raw)
  To: Alexis Lothoré via buildroot; +Cc: Alexis Lothoré, Thomas Petazzoni

Hi Alexis,

On Sun, Sep 21 2025, Alexis Lothoré via buildroot wrote:
> When searching for the official git repository in the documentation,
> readers are forwarded to the buildroot website Download page with a link
> pointing to buildroot.org/download, which returns a 404.
>
> Fix the dead link by adding the missing .html suffix.
>
> Signed-off-by: Alexis Lothoré <alexis.lothore@bootlin.com>
> ---
>  docs/manual/getting.adoc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/docs/manual/getting.adoc b/docs/manual/getting.adoc
> index 51c97d57931058082b426d19b5bef6c74d1f8a5d..1437a3ccef2349965710e785a87f078224025b5d 100644
> --- a/docs/manual/getting.adoc
> +++ b/docs/manual/getting.adoc
> @@ -32,5 +32,5 @@ vagrant up
>  
>  If you want to follow development, you can use the daily snapshots or
>  make a clone of the Git repository. Refer to the
> -http://buildroot.org/download[Download page] of the Buildroot website
> +http://buildroot.org/download.html[Download page] of the Buildroot website

Maybe switch to https while at it? This link redirects there anyway.

baruch

>  for more details.
>
> ---
> base-commit: 5d2abdc66ca687c926e1c4546c12aca7f7d72ca4
> change-id: 20250921-fix_doc_dead_link-ce9ed4e84172
>
> Best regards,

-- 
                                                     ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch@tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] docs/manual/getting: fix dead link
  2025-09-21 13:15 ` Baruch Siach via buildroot
@ 2025-09-22 14:11   ` Alexis Lothoré via buildroot
  2025-09-22 20:06     ` Julien Olivain via buildroot
  0 siblings, 1 reply; 5+ messages in thread
From: Alexis Lothoré via buildroot @ 2025-09-22 14:11 UTC (permalink / raw)
  To: Baruch Siach, Alexis Lothoré via buildroot
  Cc: Alexis Lothoré, Thomas Petazzoni

Hi Baruch,

On Sun Sep 21, 2025 at 3:15 PM CEST, Baruch Siach wrote:
> Hi Alexis,
>
> On Sun, Sep 21 2025, Alexis Lothoré via buildroot wrote:

[...]

>>  If you want to follow development, you can use the daily snapshots or
>>  make a clone of the Git repository. Refer to the
>> -http://buildroot.org/download[Download page] of the Buildroot website
>> +http://buildroot.org/download.html[Download page] of the Buildroot website
>
> Maybe switch to https while at it? This link redirects there anyway.

Sure. But in this case, I guess it does not make sense to do it only for
this link, and it should be done for any link pointing to buildroot.org:

$ grep -ri "http://.*buildroot.org" ~/src/buildroot/docs/manual
/home/alexis/src/buildroot/docs/manual/contribute.adoc:All build results are available at http://autobuild.buildroot.org[],
/home/alexis/src/buildroot/docs/manual/contribute.adoc:statistics are at http://autobuild.buildroot.org/stats.php[]. Every day,
/home/alexis/src/buildroot/docs/manual/contribute.adoc:    http://git.buildroot.org/buildroot-test/tree/utils/br-reproduce-build[br-reproduce-build]
/home/alexis/src/buildroot/docs/manual/contribute.adoc:Fixes: http://autobuild.buildroot.org/results/51000a9d4656afe9e0ea6f07b9f8ed374c2e4069
/home/alexis/src/buildroot/docs/manual/resources.adoc:http://lists.buildroot.org/mailman/listinfo/buildroot[mailing list info
/home/alexis/src/buildroot/docs/manual/resources.adoc:http://lists.buildroot.org/pipermail/buildroot[Mailman] or at
/home/alexis/src/buildroot/docs/manual/getting.adoc:Release tarballs are available at http://buildroot.org/downloads/[].
/home/alexis/src/buildroot/docs/manual/getting.adoc:http://buildroot.org/download.html[Download page] of the Buildroot website
/home/alexis/src/buildroot/docs/manual/manual.adoc:http://git.buildroot.org/buildroot/tree/COPYING?id={sys:git rev-parse HEAD}[COPYING]
/home/alexis/src/buildroot/docs/manual/adding-packages-tips.adoc:Buildroot runs http://autobuild.buildroot.org/[autobuilders] which

If maintainers are fine with that, I can add a dedicated commit in a v2.

Thanks,

Alexis


-- 
Alexis Lothoré, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] docs/manual/getting: fix dead link
  2025-09-22 14:11   ` Alexis Lothoré via buildroot
@ 2025-09-22 20:06     ` Julien Olivain via buildroot
  2025-09-22 20:33       ` Alexis Lothoré via buildroot
  0 siblings, 1 reply; 5+ messages in thread
From: Julien Olivain via buildroot @ 2025-09-22 20:06 UTC (permalink / raw)
  To: Alexis Lothoré; +Cc: Thomas Petazzoni, Alexis Lothoré via buildroot

Hi Alexis, Baruch, All,

On 22/09/2025 16:11, Alexis Lothoré via buildroot wrote:
> Hi Baruch,
> 
> On Sun Sep 21, 2025 at 3:15 PM CEST, Baruch Siach wrote:
>> Hi Alexis,
>> 
>> On Sun, Sep 21 2025, Alexis Lothoré via buildroot wrote:
> 
> [...]
> 
>>>  If you want to follow development, you can use the daily snapshots 
>>> or
>>>  make a clone of the Git repository. Refer to the
>>> -http://buildroot.org/download[Download page] of the Buildroot 
>>> website
>>> +http://buildroot.org/download.html[Download page] of the Buildroot 
>>> website
>> 
>> Maybe switch to https while at it? This link redirects there anyway.
> 
> Sure. But in this case, I guess it does not make sense to do it only 
> for
> this link, and it should be done for any link pointing to 
> buildroot.org:
> 
> $ grep -ri "http://.*buildroot.org" ~/src/buildroot/docs/manual
> /home/alexis/src/buildroot/docs/manual/contribute.adoc:All build 
> results are available at http://autobuild.buildroot.org[],
> /home/alexis/src/buildroot/docs/manual/contribute.adoc:statistics are 
> at http://autobuild.buildroot.org/stats.php[]. Every day,
> /home/alexis/src/buildroot/docs/manual/contribute.adoc:    
> http://git.buildroot.org/buildroot-test/tree/utils/br-reproduce-build[br-reproduce-build]
> /home/alexis/src/buildroot/docs/manual/contribute.adoc:Fixes: 
> http://autobuild.buildroot.org/results/51000a9d4656afe9e0ea6f07b9f8ed374c2e4069
> /home/alexis/src/buildroot/docs/manual/resources.adoc:http://lists.buildroot.org/mailman/listinfo/buildroot[mailing 
> list info
> /home/alexis/src/buildroot/docs/manual/resources.adoc:http://lists.buildroot.org/pipermail/buildroot[Mailman] 
> or at
> /home/alexis/src/buildroot/docs/manual/getting.adoc:Release tarballs 
> are available at http://buildroot.org/downloads/[].
> /home/alexis/src/buildroot/docs/manual/getting.adoc:http://buildroot.org/download.html[Download 
> page] of the Buildroot website
> /home/alexis/src/buildroot/docs/manual/manual.adoc:http://git.buildroot.org/buildroot/tree/COPYING?id={sys:git 
> rev-parse HEAD}[COPYING]
> /home/alexis/src/buildroot/docs/manual/adding-packages-tips.adoc:Buildroot 
> runs http://autobuild.buildroot.org/[autobuilders] which
> 
> If maintainers are fine with that, I can add a dedicated commit in a 
> v2.

I applied this patch on master, to fix this broken link.

But I agree we could move all http://buildroot.org links to https. Could
you send a separate patch for that please?

For another documentation url cleanup, I'm also suggesting to update all
git.buildroot.org links to https://gitlab.com/buildroot.org

> 
> Thanks,
> 
> Alexis
> 
> 
> --
> Alexis Lothoré, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com

Best regards,

Julien.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH] docs/manual/getting: fix dead link
  2025-09-22 20:06     ` Julien Olivain via buildroot
@ 2025-09-22 20:33       ` Alexis Lothoré via buildroot
  0 siblings, 0 replies; 5+ messages in thread
From: Alexis Lothoré via buildroot @ 2025-09-22 20:33 UTC (permalink / raw)
  To: Julien Olivain, Alexis Lothoré
  Cc: Thomas Petazzoni, Alexis Lothoré via buildroot

Hi Julien,

On Mon Sep 22, 2025 at 10:06 PM CEST, Julien Olivain wrote:
> Hi Alexis, Baruch, All,

[...]

>> If maintainers are fine with that, I can add a dedicated commit in a 
>> v2.
>
> I applied this patch on master, to fix this broken link.

Thanks :)


> But I agree we could move all http://buildroot.org links to https. Could
> you send a separate patch for that please?
>
> For another documentation url cleanup, I'm also suggesting to update all
> git.buildroot.org links to https://gitlab.com/buildroot.org

Sure, I'll follow up with a small series to update those two points as
well.

Thanks,

Alexis


-- 
Alexis Lothoré, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2025-09-22 20:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-21 12:39 [Buildroot] [PATCH] docs/manual/getting: fix dead link Alexis Lothoré via buildroot
2025-09-21 13:15 ` Baruch Siach via buildroot
2025-09-22 14:11   ` Alexis Lothoré via buildroot
2025-09-22 20:06     ` Julien Olivain via buildroot
2025-09-22 20:33       ` Alexis Lothoré via buildroot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox