All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v2 1/1] board/qemu/microblazeel-mmu: fix run command for qemu 11.0.0
@ 2026-08-14 13:14 Neal Frager via buildroot
  2026-08-14 14:23 ` Kanak Shilledar
  2026-08-15 14:04 ` Julien Olivain via buildroot
  0 siblings, 2 replies; 3+ messages in thread
From: Neal Frager via buildroot @ 2026-08-14 13:14 UTC (permalink / raw)
  To: buildroot
  Cc: Neal Frager, joseph, thesamprice, ju.o, thomas.petazzoni,
	romain.naour, michal.simek, romain.naour

With qemu version 11.0.0, support for microblazeel has been folded into the
microblaze target. This means that the run command for microblazeel-mmu needs
to be changed to reflect this.

See the notes in the qemu bump commit to 11.0.0 for more details:
https://github.com/buildroot/buildroot/commit/9a5369effd22011b52b82c91f702bacde690c41a

Run command for qemu versions prior to 11.0.0:
qemu-system-microblazeel -M petalogix-s3adsp1800 -kernel output/images/linux.bin -serial stdio

New run command since qemu version 11.0.0:
qemu-system-microblaze -M petalogix-s3adsp1800 -kernel output/images/linux.bin -serial stdio

Signed-off-by: Neal Frager <neal.frager@amd.com>
---
V1->V2:
- added missing endianness=little parameter
---
 board/qemu/microblazeel-mmu/readme.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/board/qemu/microblazeel-mmu/readme.txt b/board/qemu/microblazeel-mmu/readme.txt
index 20fa0072ed..4d1e660650 100644
--- a/board/qemu/microblazeel-mmu/readme.txt
+++ b/board/qemu/microblazeel-mmu/readme.txt
@@ -1,5 +1,5 @@
 Run the emulation with:
 
- qemu-system-microblazeel -M petalogix-s3adsp1800 -kernel output/images/linux.bin -serial stdio # qemu_microblazeel_mmu_defconfig
+ qemu-system-microblaze -M petalogix-s3adsp1800,endianness=little -kernel output/images/linux.bin -serial stdio # qemu_microblazeel_mmu_defconfig
 
 The login prompt will appear in the terminal that started Qemu.
-- 
2.43.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 v2 1/1] board/qemu/microblazeel-mmu: fix run command for qemu 11.0.0
  2026-08-14 13:14 [Buildroot] [PATCH v2 1/1] board/qemu/microblazeel-mmu: fix run command for qemu 11.0.0 Neal Frager via buildroot
@ 2026-08-14 14:23 ` Kanak Shilledar
  2026-08-15 14:04 ` Julien Olivain via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Kanak Shilledar @ 2026-08-14 14:23 UTC (permalink / raw)
  To: neal.frager@amd.com, buildroot@buildroot.org
  Cc: thomas.petazzoni@bootlin.com, michal.simek@amd.com,
	romain.naour@gmail.com, thesamprice@gmail.com, ju.o@free.fr,
	joseph@anodize.com, romain.naour@smile.fr


[-- Attachment #1.1: Type: text/plain, Size: 1857 bytes --]

Hi Neal,
Thanks for the patch.

On Fri, 2026-08-14 at 14:14 +0100, Neal Frager via buildroot wrote:
> With qemu version 11.0.0, support for microblazeel has been folded
> into the
> microblaze target. This means that the run command for microblazeel-
> mmu needs
> to be changed to reflect this.
> 
> See the notes in the qemu bump commit to 11.0.0 for more details:
> https://github.com/buildroot/buildroot/commit/9a5369effd22011b52b82c91f702bacde690c41a
> 
> Run command for qemu versions prior to 11.0.0:
> qemu-system-microblazeel -M petalogix-s3adsp1800 -kernel
> output/images/linux.bin -serial stdio
> 
> New run command since qemu version 11.0.0:
> qemu-system-microblaze -M petalogix-s3adsp1800 -kernel
> output/images/linux.bin -serial stdio
> 
> Signed-off-by: Neal Frager <neal.frager@amd.com>
> ---
> V1->V2:
> - added missing endianness=little parameter
> ---
>  board/qemu/microblazeel-mmu/readme.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/board/qemu/microblazeel-mmu/readme.txt
> b/board/qemu/microblazeel-mmu/readme.txt
> index 20fa0072ed..4d1e660650 100644
> --- a/board/qemu/microblazeel-mmu/readme.txt
> +++ b/board/qemu/microblazeel-mmu/readme.txt
> @@ -1,5 +1,5 @@
>  Run the emulation with:
>  
> - qemu-system-microblazeel -M petalogix-s3adsp1800 -kernel
> output/images/linux.bin -serial stdio #
> qemu_microblazeel_mmu_defconfig
> + qemu-system-microblaze -M petalogix-s3adsp1800,endianness=little -
> kernel output/images/linux.bin -serial stdio #
> qemu_microblazeel_mmu_defconfig
>  
>  The login prompt will appear in the terminal that started Qemu.
I tested this patch on master
(4146368857526dea1255355ea9beff81aaa42d09) and it is working for me.

Tested-by: Kanak Shilledar <kanak.shilledar@axis.com>

BestRegards,
Kanak Shilledar

[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

[-- Attachment #2: Type: text/plain, Size: 150 bytes --]

_______________________________________________
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 v2 1/1] board/qemu/microblazeel-mmu: fix run command for qemu 11.0.0
  2026-08-14 13:14 [Buildroot] [PATCH v2 1/1] board/qemu/microblazeel-mmu: fix run command for qemu 11.0.0 Neal Frager via buildroot
  2026-08-14 14:23 ` Kanak Shilledar
@ 2026-08-15 14:04 ` Julien Olivain via buildroot
  1 sibling, 0 replies; 3+ messages in thread
From: Julien Olivain via buildroot @ 2026-08-15 14:04 UTC (permalink / raw)
  To: Neal Frager
  Cc: buildroot, joseph, thesamprice, thomas.petazzoni, romain.naour,
	michal.simek, romain.naour

On 14/08/2026 15:14, Neal Frager via buildroot wrote:
> With qemu version 11.0.0, support for microblazeel has been folded into 
> the
> microblaze target. This means that the run command for microblazeel-mmu 
> needs
> to be changed to reflect this.
> 
> See the notes in the qemu bump commit to 11.0.0 for more details:
> https://github.com/buildroot/buildroot/commit/9a5369effd22011b52b82c91f702bacde690c41a
> 
> Run command for qemu versions prior to 11.0.0:
> qemu-system-microblazeel -M petalogix-s3adsp1800 -kernel 
> output/images/linux.bin -serial stdio
> 
> New run command since qemu version 11.0.0:
> qemu-system-microblaze -M petalogix-s3adsp1800 -kernel 
> output/images/linux.bin -serial stdio
> 
> Signed-off-by: Neal Frager <neal.frager@amd.com>

Applied to master, thanks.
_______________________________________________
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:[~2026-08-15 14:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-14 13:14 [Buildroot] [PATCH v2 1/1] board/qemu/microblazeel-mmu: fix run command for qemu 11.0.0 Neal Frager via buildroot
2026-08-14 14:23 ` Kanak Shilledar
2026-08-15 14:04 ` Julien Olivain 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.