All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] uboot-test-hooks: Switch to our GitLab instance
@ 2021-02-22 15:49 Tom Rini
  2021-02-22 15:57 ` Stephen Warren
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Tom Rini @ 2021-02-22 15:49 UTC (permalink / raw)
  To: u-boot

As Stephen is no longer actively maintaining the uboot-test-hooks
repository, switch to using the instance on our GitLab.

Cc: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
---
 .azure-pipelines.yml       | 2 +-
 .gitlab-ci.yml             | 2 +-
 doc/develop/py_testing.rst | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index a6279427e138..b3983ec078c3 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -295,7 +295,7 @@ jobs:
           cat << "EOF" >> test.sh
           # the below corresponds to .gitlab-ci.yml "before_script"
           cd ${WORK_DIR}
-          git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks
+          git clone --depth=1 https://gitlab.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
           ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
           ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
           grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2cdcd864c86a..f9be33cb7a9e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -15,7 +15,7 @@ stages:
   stage: test.py
   before_script:
     # Clone uboot-test-hooks
-    - git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks
+    - git clone --depth=1 https://gitlab.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
     - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
     - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
     - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
diff --git a/doc/develop/py_testing.rst b/doc/develop/py_testing.rst
index f71e837aa960..b83b38fb2134 100644
--- a/doc/develop/py_testing.rst
+++ b/doc/develop/py_testing.rst
@@ -301,7 +301,7 @@ saving wear on the flash chip(s).
 Examples
 ''''''''
 
-https://github.com/swarren/uboot-test-hooks contains some working example hook
+https://gitlab.denx.de/u-boot/u-boot-test-hooks contains some working example hook
 scripts, and may be useful as a reference when implementing hook scripts for
 your platform. These scripts are not considered part of U-Boot itself.
 
-- 
2.17.1

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

* [PATCH] uboot-test-hooks: Switch to our GitLab instance
  2021-02-22 15:49 [PATCH] uboot-test-hooks: Switch to our GitLab instance Tom Rini
@ 2021-02-22 15:57 ` Stephen Warren
  2021-02-23  5:50 ` Asherah Connor
  2021-02-24 22:05 ` [PATCHv2] " Tom Rini
  2 siblings, 0 replies; 5+ messages in thread
From: Stephen Warren @ 2021-02-22 15:57 UTC (permalink / raw)
  To: u-boot

On 2/22/21 8:49 AM, Tom Rini wrote:
> As Stephen is no longer actively maintaining the uboot-test-hooks
> repository, switch to using the instance on our GitLab.

Acked-by: Stephen Warren <swarren@nvidia.com>

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

* [PATCH] uboot-test-hooks: Switch to our GitLab instance
  2021-02-22 15:49 [PATCH] uboot-test-hooks: Switch to our GitLab instance Tom Rini
  2021-02-22 15:57 ` Stephen Warren
@ 2021-02-23  5:50 ` Asherah Connor
  2021-02-24 22:05 ` [PATCHv2] " Tom Rini
  2 siblings, 0 replies; 5+ messages in thread
From: Asherah Connor @ 2021-02-23  5:50 UTC (permalink / raw)
  To: u-boot

On 21/02/22 10:02:p, Tom Rini wrote:
> As Stephen is no longer actively maintaining the uboot-test-hooks
> repository, switch to using the instance on our GitLab.

We may also want to update the Contributing.md in the u-boot-test-hooks
repository:
https://gitlab.denx.de/u-boot/u-boot-test-hooks/-/blob/master/Contributing.md

Suggested minimal patch:

diff --git a/Contributing.md b/Contributing.md
index e8bcfc4..c1d1806 100644
--- a/Contributing.md
+++ b/Contributing.md
@@ -1,12 +1,6 @@
-To add patches to this repo, please either:
+To add patches to this repo, please send the patch via email to:

-a) Submit a github pull request.
-
-b) Send the patch via email, at least:
-
-To: swarren at nvidia.com
-
-Cc: u-boot at lists.denx.de
+u-boot at lists.denx.de

 With a subject prefix of "[PATCH test hooks]", i.e.:

--
2.20.1

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

* [PATCHv2] uboot-test-hooks: Switch to our GitLab instance
  2021-02-22 15:49 [PATCH] uboot-test-hooks: Switch to our GitLab instance Tom Rini
  2021-02-22 15:57 ` Stephen Warren
  2021-02-23  5:50 ` Asherah Connor
@ 2021-02-24 22:05 ` Tom Rini
  2021-02-28 21:39   ` Tom Rini
  2 siblings, 1 reply; 5+ messages in thread
From: Tom Rini @ 2021-02-24 22:05 UTC (permalink / raw)
  To: u-boot

As Stephen is no longer actively maintaining the uboot-test-hooks
repository, switch to using the instance on our GitLab.

Acked-by: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
--
Changes in v2:
- Switch to new name of our GitLab instance
---
 .azure-pipelines.yml       | 2 +-
 .gitlab-ci.yml             | 2 +-
 doc/develop/py_testing.rst | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index a6279427e138..013b170bf251 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -295,7 +295,7 @@ jobs:
           cat << "EOF" >> test.sh
           # the below corresponds to .gitlab-ci.yml "before_script"
           cd ${WORK_DIR}
-          git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks
+          git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
           ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
           ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
           grub-mkimage --prefix=\"\" -o ~/grub_x86.efi -O i386-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2cdcd864c86a..bf7939cf9046 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -15,7 +15,7 @@ stages:
   stage: test.py
   before_script:
     # Clone uboot-test-hooks
-    - git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks
+    - git clone --depth=1 https://source.denx.de/u-boot/u-boot-test-hooks /tmp/uboot-test-hooks
     - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname`
     - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname`
     - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
diff --git a/doc/develop/py_testing.rst b/doc/develop/py_testing.rst
index f71e837aa960..7f01858cfda0 100644
--- a/doc/develop/py_testing.rst
+++ b/doc/develop/py_testing.rst
@@ -301,7 +301,7 @@ saving wear on the flash chip(s).
 Examples
 ''''''''
 
-https://github.com/swarren/uboot-test-hooks contains some working example hook
+https://source.denx.de/u-boot/u-boot-test-hooks contains some working example hook
 scripts, and may be useful as a reference when implementing hook scripts for
 your platform. These scripts are not considered part of U-Boot itself.
 
-- 
2.17.1

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

* [PATCHv2] uboot-test-hooks: Switch to our GitLab instance
  2021-02-24 22:05 ` [PATCHv2] " Tom Rini
@ 2021-02-28 21:39   ` Tom Rini
  0 siblings, 0 replies; 5+ messages in thread
From: Tom Rini @ 2021-02-28 21:39 UTC (permalink / raw)
  To: u-boot

On Wed, Feb 24, 2021 at 05:05:04PM -0500, Tom Rini wrote:

> As Stephen is no longer actively maintaining the uboot-test-hooks
> repository, switch to using the instance on our GitLab.
> 
> Acked-by: Stephen Warren <swarren@wwwdotorg.org>
> Signed-off-by: Tom Rini <trini@konsulko.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20210228/b214b28b/attachment.sig>

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

end of thread, other threads:[~2021-02-28 21:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-22 15:49 [PATCH] uboot-test-hooks: Switch to our GitLab instance Tom Rini
2021-02-22 15:57 ` Stephen Warren
2021-02-23  5:50 ` Asherah Connor
2021-02-24 22:05 ` [PATCHv2] " Tom Rini
2021-02-28 21:39   ` Tom Rini

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.