All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] gitlab: use our own GRUB
@ 2019-12-19 12:30 Heinrich Schuchardt
  2020-02-07 16:46 ` [PATCH] azure: Use our own GRUB binaries Tom Rini
  2020-02-07 18:51 ` [PATCH 1/1] gitlab: use our own GRUB Tom Rini
  0 siblings, 2 replies; 4+ messages in thread
From: Heinrich Schuchardt @ 2019-12-19 12:30 UTC (permalink / raw)
  To: u-boot

Up to now we have been relying on openSUSE repositories for GRUB on arm and
arm64 though we have included GRUB in our Docker image.

Use the GRUB included in our Docker image.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
---
 .gitlab-ci.yml | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0f5271dcd3..7b3b7117f6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -20,13 +20,12 @@ stages:
     - 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
     - grub-mkimage --prefix="" -o ~/grub_x64.efi -O x86_64-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
-    - mkdir ~/grub2-arm
-    - ( cd ~/grub2-arm; wget -O - http://download.opensuse.org/ports/armv7hl/distribution/leap/42.2/repo/oss/suse/armv7hl/grub2-arm-efi-2.02~beta2-87.1.armv7hl.rpm | rpm2cpio | cpio -di )
-    - mkdir ~/grub2-arm64
-    - ( cd ~/grub2-arm64; wget -O - http://download.opensuse.org/ports/aarch64/distribution/leap/42.2/repo/oss/suse/aarch64/grub2-arm64-efi-2.02~beta2-87.1.aarch64.rpm | rpm2cpio | cpio -di )
+    - cp /opt/grub/grubriscv64.efi ~/grub_riscv64.efi
+    - cp /opt/grub/grubaa64.efi ~/grub_arm64.efi
+    - cp /opt/grub/grubarm.efi ~/grub_arm.efi

   after_script:
-    - rm -rf ~/grub2* /tmp/uboot-test-hooks /tmp/venv
+    - rm -rf /tmp/uboot-test-hooks /tmp/venv
   script:
     # From buildman, exit code 129 means warnings only.  If we've been asked to
     # use clang only do one configuration.
--
2.24.0

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

* [PATCH] azure: Use our own GRUB binaries
  2019-12-19 12:30 [PATCH 1/1] gitlab: use our own GRUB Heinrich Schuchardt
@ 2020-02-07 16:46 ` Tom Rini
  2020-02-07 18:51   ` Tom Rini
  2020-02-07 18:51 ` [PATCH 1/1] gitlab: use our own GRUB Tom Rini
  1 sibling, 1 reply; 4+ messages in thread
From: Tom Rini @ 2020-02-07 16:46 UTC (permalink / raw)
  To: u-boot

Use the same logic from 24df1b14f3ab to use our own GRUB binaries in
Azure pipelines as well.

Signed-off-by: Tom Rini <trini@konsulko.com>
---
 .azure-pipelines.yml | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index a0713dd66c0a..d235aecf1e75 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -252,10 +252,9 @@ jobs:
           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
           grub-mkimage --prefix=\"\" -o ~/grub_x64.efi -O x86_64-efi normal  echo lsefimmap lsefi lsefisystab efinet tftp minicmd
-          mkdir ~/grub2-arm
-          cd ~/grub2-arm; wget -O - http://download.opensuse.org/ports/armv7hl/distribution/leap/42.2/repo/oss/suse/armv7hl/grub2-arm-efi-2.02~beta2-87.1.armv7hl.rpm | rpm2cpio | cpio -di
-          mkdir ~/grub2-arm64
-          cd ~/grub2-arm64; wget -O - http://download.opensuse.org/ports/aarch64/distribution/leap/42.2/repo/oss/suse/aarch64/grub2-arm64-efi-2.02~beta2-87.1.aarch64.rpm | rpm2cpio | cpio -di
+          cp /opt/grub/grubriscv64.efi ~/grub_riscv64.efi
+          cp /opt/grub/grubaa64.efi ~/grub_arm64.efi
+          cp /opt/grub/grubarm.efi ~/grub_arm.efi
           # the below corresponds to .gitlab-ci.yml "script"
           cd ${WORK_DIR}
           if [[ "${BUILDMAN}" != "" ]]; then
@@ -280,7 +279,7 @@ jobs:
               fi;
           fi
           # the below corresponds to .gitlab-ci.yml "after_script"
-          rm -rf ~/grub2* /tmp/uboot-test-hooks /tmp/venv
+          rm -rf /tmp/uboot-test-hooks /tmp/venv
           EOF
           cat test.sh
           # make current directory writeable to uboot user inside the container
-- 
2.17.1

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

* [PATCH 1/1] gitlab: use our own GRUB
  2019-12-19 12:30 [PATCH 1/1] gitlab: use our own GRUB Heinrich Schuchardt
  2020-02-07 16:46 ` [PATCH] azure: Use our own GRUB binaries Tom Rini
@ 2020-02-07 18:51 ` Tom Rini
  1 sibling, 0 replies; 4+ messages in thread
From: Tom Rini @ 2020-02-07 18:51 UTC (permalink / raw)
  To: u-boot

On Thu, Dec 19, 2019 at 01:30:32PM +0100, Heinrich Schuchardt wrote:

> Up to now we have been relying on openSUSE repositories for GRUB on arm and
> arm64 though we have included GRUB in our Docker image.
> 
> Use the GRUB included in our Docker image.
> 
> Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>

Applied to u-boot/master, thanks!

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

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

* [PATCH] azure: Use our own GRUB binaries
  2020-02-07 16:46 ` [PATCH] azure: Use our own GRUB binaries Tom Rini
@ 2020-02-07 18:51   ` Tom Rini
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2020-02-07 18:51 UTC (permalink / raw)
  To: u-boot

On Fri, Feb 07, 2020 at 11:46:59AM -0500, Tom Rini wrote:

> Use the same logic from 24df1b14f3ab to use our own GRUB binaries in
> Azure pipelines as well.
> 
> 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: 833 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20200207/451f63f7/attachment.sig>

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

end of thread, other threads:[~2020-02-07 18:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-19 12:30 [PATCH 1/1] gitlab: use our own GRUB Heinrich Schuchardt
2020-02-07 16:46 ` [PATCH] azure: Use our own GRUB binaries Tom Rini
2020-02-07 18:51   ` Tom Rini
2020-02-07 18:51 ` [PATCH 1/1] gitlab: use our own GRUB 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.