All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org
@ 2020-03-26 16:04 Bin Meng
  2020-03-26 16:04 ` [PATCH 2/3] Dockerfile: Build GRUB UEFI target for RISC-V 32-bit Bin Meng
                   ` (3 more replies)
  0 siblings, 4 replies; 14+ messages in thread
From: Bin Meng @ 2020-03-26 16:04 UTC (permalink / raw)
  To: u-boot

This is required to build GRUB UEFI target for RISC-V 32-bit.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 Dockerfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Dockerfile b/Dockerfile
index 32d43f7..dc9d6c9 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -23,6 +23,7 @@ RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_
 RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/7.3.0/x86_64-gcc-7.3.0-nolibc_microblaze-linux.tar.xz | tar -C /opt -xJ
 RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/7.3.0/x86_64-gcc-7.3.0-nolibc_nios2-linux.tar.xz | tar -C /opt -xJ
 RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/7.3.0/x86_64-gcc-7.3.0-nolibc_powerpc-linux.tar.xz | tar -C /opt -xJ
+RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/7.3.0/x86_64-gcc-7.3.0-nolibc_riscv32-linux.tar.xz | tar -C /opt -xJ
 RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/7.3.0/x86_64-gcc-7.3.0-nolibc_riscv64-linux.tar.xz | tar -C /opt -xJ
 RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/7.3.0/x86_64-gcc-7.3.0-nolibc_sh2-linux.tar.xz | tar -C /opt -xJ
 
-- 
2.7.4

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

* [PATCH 2/3] Dockerfile: Build GRUB UEFI target for RISC-V 32-bit
  2020-03-26 16:04 [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org Bin Meng
@ 2020-03-26 16:04 ` Bin Meng
  2020-04-10 22:24   ` Tom Rini
  2020-03-26 16:04 ` [PATCH 3/3] Dockerfile: Build QEMU " Bin Meng
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 14+ messages in thread
From: Bin Meng @ 2020-03-26 16:04 UTC (permalink / raw)
  To: u-boot

Build GRUB UEFI target grubriscv32.efi.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 Dockerfile | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index dc9d6c9..a19067e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -96,7 +96,7 @@ RUN wget http://mirrors.kernel.org/ubuntu/pool/main/m/mpfr4/libmpfr4_3.1.4-1_amd
 # Manually install a new enough version of efitools (must be v1.5.2 or later)
 RUN wget http://mirrors.kernel.org/ubuntu/pool/universe/e/efitools/efitools_1.8.1-0ubuntu2_amd64.deb && sudo dpkg -i efitools_1.8.1-0ubuntu2_amd64.deb && rm efitools_1.8.1-0ubuntu2_amd64.deb
 
-# Build GRUB UEFI targets grubarm.efi and grubaa64.efi
+# Build GRUB UEFI targets for ARM & RISC-V, 32-bit and 64-bit
 RUN git clone git://git.savannah.gnu.org/grub.git /tmp/grub && \
 	cd /tmp/grub && \
 	git checkout grub-2.04 && \
@@ -143,6 +143,20 @@ RUN git clone git://git.savannah.gnu.org/grub.git /tmp/grub && \
 	lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot \
 	search search_fs_file search_fs_uuid search_label serial sleep test \
 	true && \
+	make clean && \
+	./configure --target=riscv32 --with-platform=efi \
+	CC=gcc \
+	TARGET_CC=/opt/gcc-7.3.0-nolibc/riscv32-linux/bin/riscv32-linux-gcc \
+	TARGET_OBJCOPY=/opt/gcc-7.3.0-nolibc/riscv32-linux/bin/riscv32-linux-objcopy \
+	TARGET_STRIP=/opt/gcc-7.3.0-nolibc/riscv32-linux/bin/riscv32-linux-strip \
+	TARGET_NM=/opt/gcc-7.3.0-nolibc/riscv32-linux/bin/riscv32-linux-nm \
+	TARGET_RANLIB=/opt/gcc-7.3.0-nolibc/riscv32-linux/bin/riscv32-linux-ranlib && \
+	make && \
+	./grub-mkimage -O riscv32-efi -o /opt/grub/grubriscv32.efi --prefix= -d \
+	grub-core cat chain configfile echo efinet ext2 fat halt help linux \
+	lsefisystab loadenv lvm minicmd normal part_msdos part_gpt reboot \
+	search search_fs_file search_fs_uuid search_label serial sleep test \
+	true && \
 	rm -rf /tmp/grub
 
 RUN git clone git://git.qemu.org/qemu.git /tmp/qemu && \
-- 
2.7.4

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

* [PATCH 3/3] Dockerfile: Build QEMU for RISC-V 32-bit
  2020-03-26 16:04 [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org Bin Meng
  2020-03-26 16:04 ` [PATCH 2/3] Dockerfile: Build GRUB UEFI target for RISC-V 32-bit Bin Meng
@ 2020-03-26 16:04 ` Bin Meng
  2020-04-10 22:24   ` Tom Rini
  2020-03-26 16:14 ` [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org Tom Rini
  2020-04-10 22:23 ` Tom Rini
  3 siblings, 1 reply; 14+ messages in thread
From: Bin Meng @ 2020-03-26 16:04 UTC (permalink / raw)
  To: u-boot

Build qemu-system-riscv32 executable for U-Boot testing.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index a19067e..3a94eb4 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -163,7 +163,7 @@ RUN git clone git://git.qemu.org/qemu.git /tmp/qemu && \
 	cd /tmp/qemu && \
 	git submodule update --init dtc && \
 	git checkout v4.2.0 && \
-	./configure --prefix=/opt/qemu --target-list="aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,mips64el-softmmu,mipsel-softmmu,ppc-softmmu,riscv64-softmmu,x86_64-softmmu,xtensa-softmmu" && \
+	./configure --prefix=/opt/qemu --target-list="aarch64-softmmu,arm-softmmu,i386-softmmu,mips-softmmu,mips64-softmmu,mips64el-softmmu,mipsel-softmmu,ppc-softmmu,riscv32-softmmu,riscv64-softmmu,x86_64-softmmu,xtensa-softmmu" && \
 	make -j$(nproc) all install && \
 	rm -rf /tmp/qemu
 
-- 
2.7.4

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

* [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org
  2020-03-26 16:04 [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org Bin Meng
  2020-03-26 16:04 ` [PATCH 2/3] Dockerfile: Build GRUB UEFI target for RISC-V 32-bit Bin Meng
  2020-03-26 16:04 ` [PATCH 3/3] Dockerfile: Build QEMU " Bin Meng
@ 2020-03-26 16:14 ` Tom Rini
  2020-03-27  1:57   ` Bin Meng
  2020-04-10 22:23 ` Tom Rini
  3 siblings, 1 reply; 14+ messages in thread
From: Tom Rini @ 2020-03-26 16:14 UTC (permalink / raw)
  To: u-boot

On Thu, Mar 26, 2020 at 09:04:52AM -0700, Bin Meng wrote:

> This is required to build GRUB UEFI target for RISC-V 32-bit.
> 
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>

Since we can use the 64bit toolchain for 32bit U-Boot, can we not pass
GRUB the right flags to use the same toolchain?  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/20200326/a03f3a66/attachment.sig>

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

* [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org
  2020-03-26 16:14 ` [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org Tom Rini
@ 2020-03-27  1:57   ` Bin Meng
  2020-03-27  1:59     ` Tom Rini
  0 siblings, 1 reply; 14+ messages in thread
From: Bin Meng @ 2020-03-27  1:57 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, Mar 27, 2020 at 12:14 AM Tom Rini <trini@konsulko.com> wrote:
>
> On Thu, Mar 26, 2020 at 09:04:52AM -0700, Bin Meng wrote:
>
> > This is required to build GRUB UEFI target for RISC-V 32-bit.
> >
> > Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
>
> Since we can use the 64bit toolchain for 32bit U-Boot, can we not pass
> GRUB the right flags to use the same toolchain?  Thanks!
>

The 32-bit GRUB won't build with the 64-bit toolchain as of the
grub-2.04 branch we are using.

Regards,
Bin

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

* [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org
  2020-03-27  1:57   ` Bin Meng
@ 2020-03-27  1:59     ` Tom Rini
  2020-03-27  6:05       ` Bin Meng
  0 siblings, 1 reply; 14+ messages in thread
From: Tom Rini @ 2020-03-27  1:59 UTC (permalink / raw)
  To: u-boot

On Fri, Mar 27, 2020 at 09:57:47AM +0800, Bin Meng wrote:
> Hi Tom,
> 
> On Fri, Mar 27, 2020 at 12:14 AM Tom Rini <trini@konsulko.com> wrote:
> >
> > On Thu, Mar 26, 2020 at 09:04:52AM -0700, Bin Meng wrote:
> >
> > > This is required to build GRUB UEFI target for RISC-V 32-bit.
> > >
> > > Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> >
> > Since we can use the 64bit toolchain for 32bit U-Boot, can we not pass
> > GRUB the right flags to use the same toolchain?  Thanks!
> 
> The 32-bit GRUB won't build with the 64-bit toolchain as of the
> grub-2.04 branch we are using.

Is that something that upstream has fixed or will fix / can be fixed and
we can bump the tag we're using for?

-- 
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/20200326/8a31410c/attachment.sig>

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

* [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org
  2020-03-27  1:59     ` Tom Rini
@ 2020-03-27  6:05       ` Bin Meng
  2020-03-27 15:25         ` Tom Rini
  0 siblings, 1 reply; 14+ messages in thread
From: Bin Meng @ 2020-03-27  6:05 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, Mar 27, 2020 at 10:00 AM Tom Rini <trini@konsulko.com> wrote:
>
> On Fri, Mar 27, 2020 at 09:57:47AM +0800, Bin Meng wrote:
> > Hi Tom,
> >
> > On Fri, Mar 27, 2020 at 12:14 AM Tom Rini <trini@konsulko.com> wrote:
> > >
> > > On Thu, Mar 26, 2020 at 09:04:52AM -0700, Bin Meng wrote:
> > >
> > > > This is required to build GRUB UEFI target for RISC-V 32-bit.
> > > >
> > > > Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> > >
> > > Since we can use the 64bit toolchain for 32bit U-Boot, can we not pass
> > > GRUB the right flags to use the same toolchain?  Thanks!
> >
> > The 32-bit GRUB won't build with the 64-bit toolchain as of the
> > grub-2.04 branch we are using.
>
> Is that something that upstream has fixed or will fix / can be fixed and
> we can bump the tag we're using for?

I tried the latest upstream GRUB, and it still cannot be built using
riscv64 toolchain from kernel.org.

Regards,
Bin

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

* [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org
  2020-03-27  6:05       ` Bin Meng
@ 2020-03-27 15:25         ` Tom Rini
  2020-03-27 23:55           ` Bin Meng
  0 siblings, 1 reply; 14+ messages in thread
From: Tom Rini @ 2020-03-27 15:25 UTC (permalink / raw)
  To: u-boot

On Fri, Mar 27, 2020 at 02:05:55PM +0800, Bin Meng wrote:
> Hi Tom,
> 
> On Fri, Mar 27, 2020 at 10:00 AM Tom Rini <trini@konsulko.com> wrote:
> >
> > On Fri, Mar 27, 2020 at 09:57:47AM +0800, Bin Meng wrote:
> > > Hi Tom,
> > >
> > > On Fri, Mar 27, 2020 at 12:14 AM Tom Rini <trini@konsulko.com> wrote:
> > > >
> > > > On Thu, Mar 26, 2020 at 09:04:52AM -0700, Bin Meng wrote:
> > > >
> > > > > This is required to build GRUB UEFI target for RISC-V 32-bit.
> > > > >
> > > > > Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> > > >
> > > > Since we can use the 64bit toolchain for 32bit U-Boot, can we not pass
> > > > GRUB the right flags to use the same toolchain?  Thanks!
> > >
> > > The 32-bit GRUB won't build with the 64-bit toolchain as of the
> > > grub-2.04 branch we are using.
> >
> > Is that something that upstream has fixed or will fix / can be fixed and
> > we can bump the tag we're using for?
> 
> I tried the latest upstream GRUB, and it still cannot be built using
> riscv64 toolchain from kernel.org.

Can that be fixed?  Would that be accepted?  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/20200327/35a70684/attachment.sig>

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

* [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org
  2020-03-27 15:25         ` Tom Rini
@ 2020-03-27 23:55           ` Bin Meng
  2020-03-31 15:15             ` Tom Rini
  0 siblings, 1 reply; 14+ messages in thread
From: Bin Meng @ 2020-03-27 23:55 UTC (permalink / raw)
  To: u-boot

Hi Tom,

On Fri, Mar 27, 2020 at 11:25 PM Tom Rini <trini@konsulko.com> wrote:
>
> On Fri, Mar 27, 2020 at 02:05:55PM +0800, Bin Meng wrote:
> > Hi Tom,
> >
> > On Fri, Mar 27, 2020 at 10:00 AM Tom Rini <trini@konsulko.com> wrote:
> > >
> > > On Fri, Mar 27, 2020 at 09:57:47AM +0800, Bin Meng wrote:
> > > > Hi Tom,
> > > >
> > > > On Fri, Mar 27, 2020 at 12:14 AM Tom Rini <trini@konsulko.com> wrote:
> > > > >
> > > > > On Thu, Mar 26, 2020 at 09:04:52AM -0700, Bin Meng wrote:
> > > > >
> > > > > > This is required to build GRUB UEFI target for RISC-V 32-bit.
> > > > > >
> > > > > > Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> > > > >
> > > > > Since we can use the 64bit toolchain for 32bit U-Boot, can we not pass
> > > > > GRUB the right flags to use the same toolchain?  Thanks!
> > > >
> > > > The 32-bit GRUB won't build with the 64-bit toolchain as of the
> > > > grub-2.04 branch we are using.
> > >
> > > Is that something that upstream has fixed or will fix / can be fixed and
> > > we can bump the tag we're using for?
> >
> > I tried the latest upstream GRUB, and it still cannot be built using
> > riscv64 toolchain from kernel.org.
>
> Can that be fixed?  Would that be accepted?  Thanks!
>

I reported this issue to the grub mailing list. For now I believe we
should stick to current 2.04 until upstream has a solution for it.

Regards,
Bin

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

* [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org
  2020-03-27 23:55           ` Bin Meng
@ 2020-03-31 15:15             ` Tom Rini
  2020-04-01  3:31               ` Bin Meng
  0 siblings, 1 reply; 14+ messages in thread
From: Tom Rini @ 2020-03-31 15:15 UTC (permalink / raw)
  To: u-boot

On Sat, Mar 28, 2020 at 07:55:37AM +0800, Bin Meng wrote:
> Hi Tom,
> 
> On Fri, Mar 27, 2020 at 11:25 PM Tom Rini <trini@konsulko.com> wrote:
> >
> > On Fri, Mar 27, 2020 at 02:05:55PM +0800, Bin Meng wrote:
> > > Hi Tom,
> > >
> > > On Fri, Mar 27, 2020 at 10:00 AM Tom Rini <trini@konsulko.com> wrote:
> > > >
> > > > On Fri, Mar 27, 2020 at 09:57:47AM +0800, Bin Meng wrote:
> > > > > Hi Tom,
> > > > >
> > > > > On Fri, Mar 27, 2020 at 12:14 AM Tom Rini <trini@konsulko.com> wrote:
> > > > > >
> > > > > > On Thu, Mar 26, 2020 at 09:04:52AM -0700, Bin Meng wrote:
> > > > > >
> > > > > > > This is required to build GRUB UEFI target for RISC-V 32-bit.
> > > > > > >
> > > > > > > Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> > > > > >
> > > > > > Since we can use the 64bit toolchain for 32bit U-Boot, can we not pass
> > > > > > GRUB the right flags to use the same toolchain?  Thanks!
> > > > >
> > > > > The 32-bit GRUB won't build with the 64-bit toolchain as of the
> > > > > grub-2.04 branch we are using.
> > > >
> > > > Is that something that upstream has fixed or will fix / can be fixed and
> > > > we can bump the tag we're using for?
> > >
> > > I tried the latest upstream GRUB, and it still cannot be built using
> > > riscv64 toolchain from kernel.org.
> >
> > Can that be fixed?  Would that be accepted?  Thanks!
> >
> 
> I reported this issue to the grub mailing list. For now I believe we
> should stick to current 2.04 until upstream has a solution for it.

Has upstream said anything here?  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/20200331/41252a06/attachment.sig>

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

* [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org
  2020-03-31 15:15             ` Tom Rini
@ 2020-04-01  3:31               ` Bin Meng
  0 siblings, 0 replies; 14+ messages in thread
From: Bin Meng @ 2020-04-01  3:31 UTC (permalink / raw)
  To: u-boot

On Tue, Mar 31, 2020 at 11:15 PM Tom Rini <trini@konsulko.com> wrote:
>
> On Sat, Mar 28, 2020 at 07:55:37AM +0800, Bin Meng wrote:
> > Hi Tom,
> >
> > On Fri, Mar 27, 2020 at 11:25 PM Tom Rini <trini@konsulko.com> wrote:
> > >
> > > On Fri, Mar 27, 2020 at 02:05:55PM +0800, Bin Meng wrote:
> > > > Hi Tom,
> > > >
> > > > On Fri, Mar 27, 2020 at 10:00 AM Tom Rini <trini@konsulko.com> wrote:
> > > > >
> > > > > On Fri, Mar 27, 2020 at 09:57:47AM +0800, Bin Meng wrote:
> > > > > > Hi Tom,
> > > > > >
> > > > > > On Fri, Mar 27, 2020 at 12:14 AM Tom Rini <trini@konsulko.com> wrote:
> > > > > > >
> > > > > > > On Thu, Mar 26, 2020 at 09:04:52AM -0700, Bin Meng wrote:
> > > > > > >
> > > > > > > > This is required to build GRUB UEFI target for RISC-V 32-bit.
> > > > > > > >
> > > > > > > > Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> > > > > > >
> > > > > > > Since we can use the 64bit toolchain for 32bit U-Boot, can we not pass
> > > > > > > GRUB the right flags to use the same toolchain?  Thanks!
> > > > > >
> > > > > > The 32-bit GRUB won't build with the 64-bit toolchain as of the
> > > > > > grub-2.04 branch we are using.
> > > > >
> > > > > Is that something that upstream has fixed or will fix / can be fixed and
> > > > > we can bump the tag we're using for?
> > > >
> > > > I tried the latest upstream GRUB, and it still cannot be built using
> > > > riscv64 toolchain from kernel.org.
> > >
> > > Can that be fixed?  Would that be accepted?  Thanks!
> > >
> >
> > I reported this issue to the grub mailing list. For now I believe we
> > should stick to current 2.04 until upstream has a solution for it.
>
> Has upstream said anything here?  Thanks!

There are some comments but no help. So far I think we should go with
current solution and wait grub upstream for the solution.

Regards,
Bin

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

* [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org
  2020-03-26 16:04 [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org Bin Meng
                   ` (2 preceding siblings ...)
  2020-03-26 16:14 ` [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org Tom Rini
@ 2020-04-10 22:23 ` Tom Rini
  3 siblings, 0 replies; 14+ messages in thread
From: Tom Rini @ 2020-04-10 22:23 UTC (permalink / raw)
  To: u-boot

On Thu, Mar 26, 2020 at 09:04:52AM -0700, Bin Meng wrote:

> This is required to build GRUB UEFI target for RISC-V 32-bit.
> 
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>

Applied to gitlab-ci-runner/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/20200410/4b54303f/attachment.sig>

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

* [PATCH 2/3] Dockerfile: Build GRUB UEFI target for RISC-V 32-bit
  2020-03-26 16:04 ` [PATCH 2/3] Dockerfile: Build GRUB UEFI target for RISC-V 32-bit Bin Meng
@ 2020-04-10 22:24   ` Tom Rini
  0 siblings, 0 replies; 14+ messages in thread
From: Tom Rini @ 2020-04-10 22:24 UTC (permalink / raw)
  To: u-boot

On Thu, Mar 26, 2020 at 09:04:53AM -0700, Bin Meng wrote:

> Build GRUB UEFI target grubriscv32.efi.
> 
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>

Applied to gitlab-ci-runner/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/20200410/f87512d1/attachment.sig>

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

* [PATCH 3/3] Dockerfile: Build QEMU for RISC-V 32-bit
  2020-03-26 16:04 ` [PATCH 3/3] Dockerfile: Build QEMU " Bin Meng
@ 2020-04-10 22:24   ` Tom Rini
  0 siblings, 0 replies; 14+ messages in thread
From: Tom Rini @ 2020-04-10 22:24 UTC (permalink / raw)
  To: u-boot

On Thu, Mar 26, 2020 at 09:04:54AM -0700, Bin Meng wrote:

> Build qemu-system-riscv32 executable for U-Boot testing.
> 
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>

Applied to gitlab-ci-runner/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/20200410/713f3e04/attachment.sig>

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

end of thread, other threads:[~2020-04-10 22:24 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-26 16:04 [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org Bin Meng
2020-03-26 16:04 ` [PATCH 2/3] Dockerfile: Build GRUB UEFI target for RISC-V 32-bit Bin Meng
2020-04-10 22:24   ` Tom Rini
2020-03-26 16:04 ` [PATCH 3/3] Dockerfile: Build QEMU " Bin Meng
2020-04-10 22:24   ` Tom Rini
2020-03-26 16:14 ` [PATCH 1/3] Dockerfile: Install riscv32 toolchain from kernel.org Tom Rini
2020-03-27  1:57   ` Bin Meng
2020-03-27  1:59     ` Tom Rini
2020-03-27  6:05       ` Bin Meng
2020-03-27 15:25         ` Tom Rini
2020-03-27 23:55           ` Bin Meng
2020-03-31 15:15             ` Tom Rini
2020-04-01  3:31               ` Bin Meng
2020-04-10 22:23 ` 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.