All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP] [PATCH 1/1] submodules: Move from git:// to https://
@ 2026-07-16 10:53 Petr Vorel
  2026-07-16 10:58 ` Petr Vorel
  2026-07-16 10:59 ` Andrea Cervesato via ltp
  0 siblings, 2 replies; 4+ messages in thread
From: Petr Vorel @ 2026-07-16 10:53 UTC (permalink / raw)
  To: ltp

git:// protocol is insecure and unreliable. LTP package build times to
times fails:

    $ git clone git://git.kernel.org/pub/scm/devel/sparse/sparse.git
    fatal: unable to connect to git.kernel.org:

Use https:// for all submodules (change for sparse and mce-test).

Reported-by: Petr Cervinka <pcervinka@suse.com>
Signed-off-by: Petr Vorel <pvorel@suse.cz>
---
 .gitmodules | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.gitmodules b/.gitmodules
index a1ac4b1b87..3f36667a3a 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,9 +1,9 @@
 [submodule "testcases/kernel/mce-test"]
 	path = testcases/kernel/mce-test
-	url = git://git.kernel.org/pub/scm/linux/kernel/git/gong.chen/mce-test.git
+	url = https://git.kernel.org/pub/scm/linux/kernel/git/gong.chen/mce-test.git
 [submodule "tools/sparse/sparse-src"]
 	path = tools/sparse/sparse-src
-	url = git://git.kernel.org/pub/scm/devel/sparse/sparse.git
+	url = https://git.kernel.org/pub/scm/devel/sparse/sparse.git
 [submodule "tools/ltx/ltx-src"]
 	path = tools/ltx/ltx-src
 	url = https://github.com/linux-test-project/ltx.git
-- 
2.55.0


-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* Re: [LTP] [PATCH 1/1] submodules: Move from git:// to https://
  2026-07-16 10:53 [LTP] [PATCH 1/1] submodules: Move from git:// to https:// Petr Vorel
@ 2026-07-16 10:58 ` Petr Vorel
  2026-07-16 10:59 ` Andrea Cervesato via ltp
  1 sibling, 0 replies; 4+ messages in thread
From: Petr Vorel @ 2026-07-16 10:58 UTC (permalink / raw)
  To: ltp

Hi all,

> git:// protocol is insecure and unreliable. LTP package build times to
> times fails:

>     $ git clone git://git.kernel.org/pub/scm/devel/sparse/sparse.git
>     fatal: unable to connect to git.kernel.org:

Actually the problem is permanent:

git.kernel.org[0: 172.105.64.184]: errno=Connection refused
git.kernel.org[1: 2a01:7e01:e001:937:0:1991:8:25]: errno=Network is unreachable

We should merge this fix to get working modules.

Kind regards,
Petr

> Use https:// for all submodules (change for sparse and mce-test).

> Reported-by: Petr Cervinka <pcervinka@suse.com>
> Signed-off-by: Petr Vorel <pvorel@suse.cz>
> ---
>  .gitmodules | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

> diff --git a/.gitmodules b/.gitmodules
> index a1ac4b1b87..3f36667a3a 100644
> --- a/.gitmodules
> +++ b/.gitmodules
> @@ -1,9 +1,9 @@
>  [submodule "testcases/kernel/mce-test"]
>  	path = testcases/kernel/mce-test
> -	url = git://git.kernel.org/pub/scm/linux/kernel/git/gong.chen/mce-test.git
> +	url = https://git.kernel.org/pub/scm/linux/kernel/git/gong.chen/mce-test.git
>  [submodule "tools/sparse/sparse-src"]
>  	path = tools/sparse/sparse-src
> -	url = git://git.kernel.org/pub/scm/devel/sparse/sparse.git
> +	url = https://git.kernel.org/pub/scm/devel/sparse/sparse.git
>  [submodule "tools/ltx/ltx-src"]
>  	path = tools/ltx/ltx-src
>  	url = https://github.com/linux-test-project/ltx.git

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* Re: [LTP] [PATCH 1/1] submodules: Move from git:// to https://
  2026-07-16 10:53 [LTP] [PATCH 1/1] submodules: Move from git:// to https:// Petr Vorel
  2026-07-16 10:58 ` Petr Vorel
@ 2026-07-16 10:59 ` Andrea Cervesato via ltp
  2026-07-16 11:04   ` Petr Vorel
  1 sibling, 1 reply; 4+ messages in thread
From: Andrea Cervesato via ltp @ 2026-07-16 10:59 UTC (permalink / raw)
  To: Petr Vorel; +Cc: ltp

Reviewed-by: Andrea Cervesato <andrea.cervesato@suse.com>

--
Andrea Cervesato
SUSE QE Automation Engineer Linux
andrea.cervesato@suse.com

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

* Re: [LTP] [PATCH 1/1] submodules: Move from git:// to https://
  2026-07-16 10:59 ` Andrea Cervesato via ltp
@ 2026-07-16 11:04   ` Petr Vorel
  0 siblings, 0 replies; 4+ messages in thread
From: Petr Vorel @ 2026-07-16 11:04 UTC (permalink / raw)
  To: Andrea Cervesato; +Cc: ltp

Hi Andrea,

thanks, merged!

Kind regards,
Petr

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

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

end of thread, other threads:[~2026-07-16 11:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-16 10:53 [LTP] [PATCH 1/1] submodules: Move from git:// to https:// Petr Vorel
2026-07-16 10:58 ` Petr Vorel
2026-07-16 10:59 ` Andrea Cervesato via ltp
2026-07-16 11:04   ` Petr Vorel

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.