All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] gitmodules: add qboot, meson, and vbootrom mirrors
@ 2020-09-09 10:16 Stefan Hajnoczi
  2020-09-09 10:16 ` [PATCH 1/3] gitmodules: switch to qemu.org qboot mirror Stefan Hajnoczi
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Stefan Hajnoczi @ 2020-09-09 10:16 UTC (permalink / raw)
  To: qemu-devel; +Cc: Stefan Hajnoczi

This patch series adds qemu.org mirrors for qboot, meson, and vbootrom.

vbootrom is not yet used by qemu.git/master so you may wish to hold off on
applying the final patch.

Stefan Hajnoczi (3):
  gitmodules: switch to qemu.org qboot mirror
  gitmodules: switch to qemu.org meson mirror
  gitmodules: add qemu.org vbootrom submodule

 .gitmodules | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

-- 
2.26.2


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

* [PATCH 1/3] gitmodules: switch to qemu.org qboot mirror
  2020-09-09 10:16 [PATCH 0/3] gitmodules: add qboot, meson, and vbootrom mirrors Stefan Hajnoczi
@ 2020-09-09 10:16 ` Stefan Hajnoczi
  2020-09-09 17:19   ` Philippe Mathieu-Daudé
  2020-09-09 10:16 ` [PATCH 2/3] gitmodules: switch to qemu.org meson mirror Stefan Hajnoczi
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Stefan Hajnoczi @ 2020-09-09 10:16 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi, Paolo Bonzini

QEMU now hosts a mirror of qboot.git. QEMU mirrors third-party code to
ensure that users can always build QEMU even if the dependency goes
offline and so QEMU meets its responsibilities to provide full source
code under software licenses.

Suggested-by: Peter Maydell <peter.maydell@linaro.org>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 .gitmodules | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitmodules b/.gitmodules
index ce979398a8..b201675288 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -57,7 +57,7 @@
 	url = 	https://git.qemu.org/git/opensbi.git
 [submodule "roms/qboot"]
 	path = roms/qboot
-	url = https://github.com/bonzini/qboot
+	url = https://git.qemu.org/git/qboot.git
 [submodule "meson"]
 	path = meson
 	url = https://github.com/mesonbuild/meson/
-- 
2.26.2


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

* [PATCH 2/3] gitmodules: switch to qemu.org meson mirror
  2020-09-09 10:16 [PATCH 0/3] gitmodules: add qboot, meson, and vbootrom mirrors Stefan Hajnoczi
  2020-09-09 10:16 ` [PATCH 1/3] gitmodules: switch to qemu.org qboot mirror Stefan Hajnoczi
@ 2020-09-09 10:16 ` Stefan Hajnoczi
  2020-09-09 17:19   ` Philippe Mathieu-Daudé
  2020-09-09 10:16 ` [PATCH 3/3] gitmodules: add qemu.org vbootrom submodule Stefan Hajnoczi
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 9+ messages in thread
From: Stefan Hajnoczi @ 2020-09-09 10:16 UTC (permalink / raw)
  To: qemu-devel
  Cc: Peter Maydell, Paolo Bonzini, Stefan Hajnoczi, Marc-André Lureau

QEMU now hosts a mirror of meson.git. QEMU mirrors third-party code to
ensure that users can always build QEMU even if the dependency goes
offline and so QEMU meets its responsibilities to provide full source
code under software licenses.

Suggested-by: Peter Maydell <peter.maydell@linaro.org>
Cc: Marc-André Lureau <marcandre.lureau@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 .gitmodules | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitmodules b/.gitmodules
index b201675288..b8f8a143bf 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -60,4 +60,4 @@
 	url = https://git.qemu.org/git/qboot.git
 [submodule "meson"]
 	path = meson
-	url = https://github.com/mesonbuild/meson/
+	url = https://git.qemu.org/git/meson.git
-- 
2.26.2


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

* [PATCH 3/3] gitmodules: add qemu.org vbootrom submodule
  2020-09-09 10:16 [PATCH 0/3] gitmodules: add qboot, meson, and vbootrom mirrors Stefan Hajnoczi
  2020-09-09 10:16 ` [PATCH 1/3] gitmodules: switch to qemu.org qboot mirror Stefan Hajnoczi
  2020-09-09 10:16 ` [PATCH 2/3] gitmodules: switch to qemu.org meson mirror Stefan Hajnoczi
@ 2020-09-09 10:16 ` Stefan Hajnoczi
  2020-09-15  6:23   ` Philippe Mathieu-Daudé
  2020-09-12 18:53 ` [PATCH 0/3] gitmodules: add qboot, meson, and vbootrom mirrors Paolo Bonzini
  2020-09-14 18:27 ` Peter Maydell
  4 siblings, 1 reply; 9+ messages in thread
From: Stefan Hajnoczi @ 2020-09-09 10:16 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Havard Skinnemoen, Stefan Hajnoczi

The vbootrom module is needed for the new NPCM7xx ARM SoCs. The
vbootrom.git repo is now mirrored on qemu.org. QEMU mirrors third-party
code to ensure that users can always build QEMU even if the dependency
goes offline and so QEMU meets its responsibilities to provide full
source code under software licenses.

Suggested-by: Peter Maydell <peter.maydell@linaro.org>
Cc: Havard Skinnemoen <hskinnemoen@google.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
This patch can be rebased on top of "[PATCH v8 00/14] Add Nuvoton
NPCM730/NPCM750 SoCs and two BMC machines" and replaces the git URL in
the original patch.
---
 .gitmodules | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.gitmodules b/.gitmodules
index b8f8a143bf..5feabf64c2 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -61,3 +61,6 @@
 [submodule "meson"]
 	path = meson
 	url = https://git.qemu.org/git/meson.git
+[submodule "roms/vbootrom"]
+       path = roms/vbootrom
+       url = https://git.qemu.org/git/vbootrom.git
-- 
2.26.2


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

* Re: [PATCH 1/3] gitmodules: switch to qemu.org qboot mirror
  2020-09-09 10:16 ` [PATCH 1/3] gitmodules: switch to qemu.org qboot mirror Stefan Hajnoczi
@ 2020-09-09 17:19   ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 9+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-09-09 17:19 UTC (permalink / raw)
  To: Stefan Hajnoczi, qemu-devel; +Cc: Peter Maydell, Paolo Bonzini

On 9/9/20 12:16 PM, Stefan Hajnoczi wrote:
> QEMU now hosts a mirror of qboot.git. QEMU mirrors third-party code to
> ensure that users can always build QEMU even if the dependency goes
> offline and so QEMU meets its responsibilities to provide full source
> code under software licenses.
> 
> Suggested-by: Peter Maydell <peter.maydell@linaro.org>
> Cc: Paolo Bonzini <pbonzini@redhat.com>
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>

> ---
>  .gitmodules | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/.gitmodules b/.gitmodules
> index ce979398a8..b201675288 100644
> --- a/.gitmodules
> +++ b/.gitmodules
> @@ -57,7 +57,7 @@
>  	url = 	https://git.qemu.org/git/opensbi.git
>  [submodule "roms/qboot"]
>  	path = roms/qboot
> -	url = https://github.com/bonzini/qboot
> +	url = https://git.qemu.org/git/qboot.git
>  [submodule "meson"]
>  	path = meson
>  	url = https://github.com/mesonbuild/meson/
> 



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

* Re: [PATCH 2/3] gitmodules: switch to qemu.org meson mirror
  2020-09-09 10:16 ` [PATCH 2/3] gitmodules: switch to qemu.org meson mirror Stefan Hajnoczi
@ 2020-09-09 17:19   ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 9+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-09-09 17:19 UTC (permalink / raw)
  To: Stefan Hajnoczi, qemu-devel
  Cc: Peter Maydell, Marc-André Lureau, Paolo Bonzini

On 9/9/20 12:16 PM, Stefan Hajnoczi wrote:
> QEMU now hosts a mirror of meson.git. QEMU mirrors third-party code to
> ensure that users can always build QEMU even if the dependency goes
> offline and so QEMU meets its responsibilities to provide full source
> code under software licenses.
> 
> Suggested-by: Peter Maydell <peter.maydell@linaro.org>
> Cc: Marc-André Lureau <marcandre.lureau@redhat.com>
> Cc: Paolo Bonzini <pbonzini@redhat.com>
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>

> ---
>  .gitmodules | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/.gitmodules b/.gitmodules
> index b201675288..b8f8a143bf 100644
> --- a/.gitmodules
> +++ b/.gitmodules
> @@ -60,4 +60,4 @@
>  	url = https://git.qemu.org/git/qboot.git
>  [submodule "meson"]
>  	path = meson
> -	url = https://github.com/mesonbuild/meson/
> +	url = https://git.qemu.org/git/meson.git
> 



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

* Re: [PATCH 0/3] gitmodules: add qboot, meson, and vbootrom mirrors
  2020-09-09 10:16 [PATCH 0/3] gitmodules: add qboot, meson, and vbootrom mirrors Stefan Hajnoczi
                   ` (2 preceding siblings ...)
  2020-09-09 10:16 ` [PATCH 3/3] gitmodules: add qemu.org vbootrom submodule Stefan Hajnoczi
@ 2020-09-12 18:53 ` Paolo Bonzini
  2020-09-14 18:27 ` Peter Maydell
  4 siblings, 0 replies; 9+ messages in thread
From: Paolo Bonzini @ 2020-09-12 18:53 UTC (permalink / raw)
  To: Stefan Hajnoczi, qemu-devel

On 09/09/20 12:16, Stefan Hajnoczi wrote:
> This patch series adds qemu.org mirrors for qboot, meson, and vbootrom.
> 
> vbootrom is not yet used by qemu.git/master so you may wish to hold off on
> applying the final patch.
> 
> Stefan Hajnoczi (3):
>   gitmodules: switch to qemu.org qboot mirror
>   gitmodules: switch to qemu.org meson mirror
>   gitmodules: add qemu.org vbootrom submodule
> 
>  .gitmodules | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 

Thanks Stefan,

I created the github mirrors too.

Paolo



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

* Re: [PATCH 0/3] gitmodules: add qboot, meson, and vbootrom mirrors
  2020-09-09 10:16 [PATCH 0/3] gitmodules: add qboot, meson, and vbootrom mirrors Stefan Hajnoczi
                   ` (3 preceding siblings ...)
  2020-09-12 18:53 ` [PATCH 0/3] gitmodules: add qboot, meson, and vbootrom mirrors Paolo Bonzini
@ 2020-09-14 18:27 ` Peter Maydell
  4 siblings, 0 replies; 9+ messages in thread
From: Peter Maydell @ 2020-09-14 18:27 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: QEMU Developers

On Wed, 9 Sep 2020 at 11:18, Stefan Hajnoczi <stefanha@redhat.com> wrote:
>
> This patch series adds qemu.org mirrors for qboot, meson, and vbootrom.
>
> vbootrom is not yet used by qemu.git/master so you may wish to hold off on
> applying the final patch.

The Nuvoton board model that uses the vbootrom submodule is
now in git master (with the initial not-yet-qemu.git submodule URL).

thanks
-- PMM


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

* Re: [PATCH 3/3] gitmodules: add qemu.org vbootrom submodule
  2020-09-09 10:16 ` [PATCH 3/3] gitmodules: add qemu.org vbootrom submodule Stefan Hajnoczi
@ 2020-09-15  6:23   ` Philippe Mathieu-Daudé
  0 siblings, 0 replies; 9+ messages in thread
From: Philippe Mathieu-Daudé @ 2020-09-15  6:23 UTC (permalink / raw)
  To: Stefan Hajnoczi, qemu-devel; +Cc: Peter Maydell, Havard Skinnemoen

On 9/9/20 12:16 PM, Stefan Hajnoczi wrote:
> The vbootrom module is needed for the new NPCM7xx ARM SoCs. The
> vbootrom.git repo is now mirrored on qemu.org. QEMU mirrors third-party
> code to ensure that users can always build QEMU even if the dependency
> goes offline and so QEMU meets its responsibilities to provide full
> source code under software licenses.
> 
> Suggested-by: Peter Maydell <peter.maydell@linaro.org>
> Cc: Havard Skinnemoen <hskinnemoen@google.com>
> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>

> ---
> This patch can be rebased on top of "[PATCH v8 00/14] Add Nuvoton
> NPCM730/NPCM750 SoCs and two BMC machines" and replaces the git URL in
> the original patch.
> ---
>  .gitmodules | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/.gitmodules b/.gitmodules
> index b8f8a143bf..5feabf64c2 100644
> --- a/.gitmodules
> +++ b/.gitmodules
> @@ -61,3 +61,6 @@
>  [submodule "meson"]
>  	path = meson
>  	url = https://git.qemu.org/git/meson.git
> +[submodule "roms/vbootrom"]
> +       path = roms/vbootrom
> +       url = https://git.qemu.org/git/vbootrom.git
> 



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

end of thread, other threads:[~2020-09-15  6:24 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-09 10:16 [PATCH 0/3] gitmodules: add qboot, meson, and vbootrom mirrors Stefan Hajnoczi
2020-09-09 10:16 ` [PATCH 1/3] gitmodules: switch to qemu.org qboot mirror Stefan Hajnoczi
2020-09-09 17:19   ` Philippe Mathieu-Daudé
2020-09-09 10:16 ` [PATCH 2/3] gitmodules: switch to qemu.org meson mirror Stefan Hajnoczi
2020-09-09 17:19   ` Philippe Mathieu-Daudé
2020-09-09 10:16 ` [PATCH 3/3] gitmodules: add qemu.org vbootrom submodule Stefan Hajnoczi
2020-09-15  6:23   ` Philippe Mathieu-Daudé
2020-09-12 18:53 ` [PATCH 0/3] gitmodules: add qboot, meson, and vbootrom mirrors Paolo Bonzini
2020-09-14 18:27 ` Peter Maydell

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.