All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH next 1/1] support/docker: add qemu-system-misc for riscv runtime tests
@ 2023-08-08 19:57 Julien Olivain
  2023-08-09 16:47 ` Alistair Francis
  2023-08-24 21:20 ` Thomas Petazzoni via buildroot
  0 siblings, 2 replies; 3+ messages in thread
From: Julien Olivain @ 2023-08-08 19:57 UTC (permalink / raw)
  To: buildroot; +Cc: Julien Olivain

The docker image currently contains qemu-system-arm and
qemu-system-x86. Each package contains the 32bit and 64bit variants.
This has been sufficient for the time being.

The RISC-V ecosystem is growing rapidly. It is starting to become
mainstream. To increase the diversity in Buildroot runtime tests,
this commit adds the qemu-system-misc package in the Docker image,
in order to have the commands qemu-system-riscv{32,64}. This package
also contains other architectures (for example: microblaze, nios2,
s390x, xtensa, ...).

For Debian package details, see:
https://packages.debian.org/bullseye/qemu-system-misc

Signed-off-by: Julien Olivain <ju.o@free.fr>
---
Note: I have already two work-in-progress patch series using
qemu-system-riscv64. I'll wait for this patch to be accepted, and
.gitlab-ci.yml to be updated to use the image before sending those.
---
 support/docker/Dockerfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/support/docker/Dockerfile b/support/docker/Dockerfile
index a16c1e3849..8c6e2add60 100644
--- a/support/docker/Dockerfile
+++ b/support/docker/Dockerfile
@@ -44,6 +44,7 @@ RUN apt-get -o APT::Retries=3 install -y --no-install-recommends \
         python3-pexpect \
         python3-pytest \
         qemu-system-arm \
+        qemu-system-misc \
         qemu-system-x86 \
         rsync \
         shellcheck \
-- 
2.41.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH next 1/1] support/docker: add qemu-system-misc for riscv runtime tests
  2023-08-08 19:57 [Buildroot] [PATCH next 1/1] support/docker: add qemu-system-misc for riscv runtime tests Julien Olivain
@ 2023-08-09 16:47 ` Alistair Francis
  2023-08-24 21:20 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Alistair Francis @ 2023-08-09 16:47 UTC (permalink / raw)
  To: Julien Olivain; +Cc: buildroot

On Tue, Aug 8, 2023 at 3:58 PM Julien Olivain <ju.o@free.fr> wrote:
>
> The docker image currently contains qemu-system-arm and
> qemu-system-x86. Each package contains the 32bit and 64bit variants.
> This has been sufficient for the time being.
>
> The RISC-V ecosystem is growing rapidly. It is starting to become
> mainstream. To increase the diversity in Buildroot runtime tests,
> this commit adds the qemu-system-misc package in the Docker image,
> in order to have the commands qemu-system-riscv{32,64}. This package
> also contains other architectures (for example: microblaze, nios2,
> s390x, xtensa, ...).
>
> For Debian package details, see:
> https://packages.debian.org/bullseye/qemu-system-misc
>
> Signed-off-by: Julien Olivain <ju.o@free.fr>

Reviewed-by: Alistair Francis <alistair.francis@wdc.com>

Alistair

> ---
> Note: I have already two work-in-progress patch series using
> qemu-system-riscv64. I'll wait for this patch to be accepted, and
> .gitlab-ci.yml to be updated to use the image before sending those.
> ---
>  support/docker/Dockerfile | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/support/docker/Dockerfile b/support/docker/Dockerfile
> index a16c1e3849..8c6e2add60 100644
> --- a/support/docker/Dockerfile
> +++ b/support/docker/Dockerfile
> @@ -44,6 +44,7 @@ RUN apt-get -o APT::Retries=3 install -y --no-install-recommends \
>          python3-pexpect \
>          python3-pytest \
>          qemu-system-arm \
> +        qemu-system-misc \
>          qemu-system-x86 \
>          rsync \
>          shellcheck \
> --
> 2.41.0
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH next 1/1] support/docker: add qemu-system-misc for riscv runtime tests
  2023-08-08 19:57 [Buildroot] [PATCH next 1/1] support/docker: add qemu-system-misc for riscv runtime tests Julien Olivain
  2023-08-09 16:47 ` Alistair Francis
@ 2023-08-24 21:20 ` Thomas Petazzoni via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2023-08-24 21:20 UTC (permalink / raw)
  To: Julien Olivain; +Cc: buildroot

On Tue,  8 Aug 2023 21:57:53 +0200
Julien Olivain <ju.o@free.fr> wrote:

> The docker image currently contains qemu-system-arm and
> qemu-system-x86. Each package contains the 32bit and 64bit variants.
> This has been sufficient for the time being.
> 
> The RISC-V ecosystem is growing rapidly. It is starting to become
> mainstream. To increase the diversity in Buildroot runtime tests,
> this commit adds the qemu-system-misc package in the Docker image,
> in order to have the commands qemu-system-riscv{32,64}. This package
> also contains other architectures (for example: microblaze, nios2,
> s390x, xtensa, ...).
> 
> For Debian package details, see:
> https://packages.debian.org/bullseye/qemu-system-misc
> 
> Signed-off-by: Julien Olivain <ju.o@free.fr>
> ---
> Note: I have already two work-in-progress patch series using
> qemu-system-riscv64. I'll wait for this patch to be accepted, and
> .gitlab-ci.yml to be updated to use the image before sending those.
> ---
>  support/docker/Dockerfile | 1 +
>  1 file changed, 1 insertion(+)

Applied to next, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2023-08-24 21:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-08 19:57 [Buildroot] [PATCH next 1/1] support/docker: add qemu-system-misc for riscv runtime tests Julien Olivain
2023-08-09 16:47 ` Alistair Francis
2023-08-24 21:20 ` Thomas Petazzoni via buildroot

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.