* [Buildroot] [PATCH 1/2] board/qemu/ppc64-pseries: adjust Qemu command line
@ 2017-11-21 8:08 Thomas Petazzoni
2017-11-21 8:08 ` [Buildroot] [PATCH 2/2] board/qemu/x86*: use quotes around -append Qemu option value Thomas Petazzoni
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2017-11-21 8:08 UTC (permalink / raw)
To: buildroot
This helps the toolchains.free-electrons.com build logic re-use
directly the Qemu command lines from this readme.txt file, by having a
-append option similar to the ones used in other readme.txt files.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
board/qemu/ppc64-pseries/readme.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/board/qemu/ppc64-pseries/readme.txt b/board/qemu/ppc64-pseries/readme.txt
index 7cc0c67d61..9de13779d0 100644
--- a/board/qemu/ppc64-pseries/readme.txt
+++ b/board/qemu/ppc64-pseries/readme.txt
@@ -1,6 +1,6 @@
Run the emulation with:
- qemu-system-ppc64 -M pseries -cpu POWER7 -m 256 -kernel output/images/vmlinux -append 'console=hvc0 root=/dev/sda' -drive file=output/images/rootfs.ext2,if=scsi,index=0,format=raw -serial stdio -display curses
+ qemu-system-ppc64 -M pseries -cpu POWER7 -m 256 -kernel output/images/vmlinux -append "console=hvc0 root=/dev/sda" -drive file=output/images/rootfs.ext2,if=scsi,index=0,format=raw -serial stdio -display curses
The login prompt will appear in the terminal that started Qemu.
--
2.13.6
^ permalink raw reply related [flat|nested] 5+ messages in thread* [Buildroot] [PATCH 2/2] board/qemu/x86*: use quotes around -append Qemu option value 2017-11-21 8:08 [Buildroot] [PATCH 1/2] board/qemu/ppc64-pseries: adjust Qemu command line Thomas Petazzoni @ 2017-11-21 8:08 ` Thomas Petazzoni 2017-11-27 20:56 ` Yann E. MORIN 2017-11-27 20:56 ` [Buildroot] [PATCH 1/2] board/qemu/ppc64-pseries: adjust Qemu command line Yann E. MORIN 2017-11-27 21:38 ` Thomas Petazzoni 2 siblings, 1 reply; 5+ messages in thread From: Thomas Petazzoni @ 2017-11-21 8:08 UTC (permalink / raw) To: buildroot This helps the toolchains.free-electrons.com build logic re-use directly the Qemu command lines from this readme.txt file, by having a -append option similar to the ones used in other readme.txt files. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- board/qemu/x86/readme.txt | 2 +- board/qemu/x86_64/readme.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/board/qemu/x86/readme.txt b/board/qemu/x86/readme.txt index 17500961d3..b003ad5373 100644 --- a/board/qemu/x86/readme.txt +++ b/board/qemu/x86/readme.txt @@ -1,6 +1,6 @@ Run the emulation with: - qemu-system-i386 -M pc -kernel output/images/bzImage -drive file=output/images/rootfs.ext2,if=virtio,format=raw -append root=/dev/vda -net nic,model=virtio -net user + qemu-system-i386 -M pc -kernel output/images/bzImage -drive file=output/images/rootfs.ext2,if=virtio,format=raw -append "root=/dev/vda" -net nic,model=virtio -net user Optionally add -smp N to emulate a SMP system with N CPUs. diff --git a/board/qemu/x86_64/readme.txt b/board/qemu/x86_64/readme.txt index ecd7813a1e..ed7b5f5532 100644 --- a/board/qemu/x86_64/readme.txt +++ b/board/qemu/x86_64/readme.txt @@ -1,6 +1,6 @@ Run the emulation with: - qemu-system-x86_64 -M pc -kernel output/images/bzImage -drive file=output/images/rootfs.ext2,if=virtio,format=raw -append root=/dev/vda -net nic,model=virtio -net user + qemu-system-x86_64 -M pc -kernel output/images/bzImage -drive file=output/images/rootfs.ext2,if=virtio,format=raw -append "root=/dev/vda" -net nic,model=virtio -net user Optionally add -smp N to emulate a SMP system with N CPUs. -- 2.13.6 ^ permalink raw reply related [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 2/2] board/qemu/x86*: use quotes around -append Qemu option value 2017-11-21 8:08 ` [Buildroot] [PATCH 2/2] board/qemu/x86*: use quotes around -append Qemu option value Thomas Petazzoni @ 2017-11-27 20:56 ` Yann E. MORIN 0 siblings, 0 replies; 5+ messages in thread From: Yann E. MORIN @ 2017-11-27 20:56 UTC (permalink / raw) To: buildroot Thomas, All, On 2017-11-21 09:08 +0100, Thomas Petazzoni spake thusly: > This helps the toolchains.free-electrons.com build logic re-use > directly the Qemu command lines from this readme.txt file, by having a > -append option similar to the ones used in other readme.txt files. > > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Regards, Yann E. MORIN. > --- > board/qemu/x86/readme.txt | 2 +- > board/qemu/x86_64/readme.txt | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/board/qemu/x86/readme.txt b/board/qemu/x86/readme.txt > index 17500961d3..b003ad5373 100644 > --- a/board/qemu/x86/readme.txt > +++ b/board/qemu/x86/readme.txt > @@ -1,6 +1,6 @@ > Run the emulation with: > > - qemu-system-i386 -M pc -kernel output/images/bzImage -drive file=output/images/rootfs.ext2,if=virtio,format=raw -append root=/dev/vda -net nic,model=virtio -net user > + qemu-system-i386 -M pc -kernel output/images/bzImage -drive file=output/images/rootfs.ext2,if=virtio,format=raw -append "root=/dev/vda" -net nic,model=virtio -net user > > Optionally add -smp N to emulate a SMP system with N CPUs. > > diff --git a/board/qemu/x86_64/readme.txt b/board/qemu/x86_64/readme.txt > index ecd7813a1e..ed7b5f5532 100644 > --- a/board/qemu/x86_64/readme.txt > +++ b/board/qemu/x86_64/readme.txt > @@ -1,6 +1,6 @@ > Run the emulation with: > > - qemu-system-x86_64 -M pc -kernel output/images/bzImage -drive file=output/images/rootfs.ext2,if=virtio,format=raw -append root=/dev/vda -net nic,model=virtio -net user > + qemu-system-x86_64 -M pc -kernel output/images/bzImage -drive file=output/images/rootfs.ext2,if=virtio,format=raw -append "root=/dev/vda" -net nic,model=virtio -net user > > Optionally add -smp N to emulate a SMP system with N CPUs. > > -- > 2.13.6 > > _______________________________________________ > buildroot mailing list > buildroot at busybox.net > http://lists.busybox.net/mailman/listinfo/buildroot -- .-----------------.--------------------.------------------.--------------------. | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: | | +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ | | +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no | | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. | '------------------------------^-------^------------------^--------------------' ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/2] board/qemu/ppc64-pseries: adjust Qemu command line 2017-11-21 8:08 [Buildroot] [PATCH 1/2] board/qemu/ppc64-pseries: adjust Qemu command line Thomas Petazzoni 2017-11-21 8:08 ` [Buildroot] [PATCH 2/2] board/qemu/x86*: use quotes around -append Qemu option value Thomas Petazzoni @ 2017-11-27 20:56 ` Yann E. MORIN 2017-11-27 21:38 ` Thomas Petazzoni 2 siblings, 0 replies; 5+ messages in thread From: Yann E. MORIN @ 2017-11-27 20:56 UTC (permalink / raw) To: buildroot Thomas, All, On 2017-11-21 09:08 +0100, Thomas Petazzoni spake thusly: > This helps the toolchains.free-electrons.com build logic re-use > directly the Qemu command lines from this readme.txt file, by having a > -append option similar to the ones used in other readme.txt files. > > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Regards, Yann E. MORIN. > --- > board/qemu/ppc64-pseries/readme.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/board/qemu/ppc64-pseries/readme.txt b/board/qemu/ppc64-pseries/readme.txt > index 7cc0c67d61..9de13779d0 100644 > --- a/board/qemu/ppc64-pseries/readme.txt > +++ b/board/qemu/ppc64-pseries/readme.txt > @@ -1,6 +1,6 @@ > Run the emulation with: > > - qemu-system-ppc64 -M pseries -cpu POWER7 -m 256 -kernel output/images/vmlinux -append 'console=hvc0 root=/dev/sda' -drive file=output/images/rootfs.ext2,if=scsi,index=0,format=raw -serial stdio -display curses > + qemu-system-ppc64 -M pseries -cpu POWER7 -m 256 -kernel output/images/vmlinux -append "console=hvc0 root=/dev/sda" -drive file=output/images/rootfs.ext2,if=scsi,index=0,format=raw -serial stdio -display curses > > The login prompt will appear in the terminal that started Qemu. > > -- > 2.13.6 > > _______________________________________________ > buildroot mailing list > buildroot at busybox.net > http://lists.busybox.net/mailman/listinfo/buildroot -- .-----------------.--------------------.------------------.--------------------. | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: | | +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ | | +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no | | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. | '------------------------------^-------^------------------^--------------------' ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Buildroot] [PATCH 1/2] board/qemu/ppc64-pseries: adjust Qemu command line 2017-11-21 8:08 [Buildroot] [PATCH 1/2] board/qemu/ppc64-pseries: adjust Qemu command line Thomas Petazzoni 2017-11-21 8:08 ` [Buildroot] [PATCH 2/2] board/qemu/x86*: use quotes around -append Qemu option value Thomas Petazzoni 2017-11-27 20:56 ` [Buildroot] [PATCH 1/2] board/qemu/ppc64-pseries: adjust Qemu command line Yann E. MORIN @ 2017-11-27 21:38 ` Thomas Petazzoni 2 siblings, 0 replies; 5+ messages in thread From: Thomas Petazzoni @ 2017-11-27 21:38 UTC (permalink / raw) To: buildroot Hello, On Tue, 21 Nov 2017 09:08:14 +0100, Thomas Petazzoni wrote: > This helps the toolchains.free-electrons.com build logic re-use > directly the Qemu command lines from this readme.txt file, by having a > -append option similar to the ones used in other readme.txt files. > > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> > --- > board/qemu/ppc64-pseries/readme.txt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Both applied to master. Thanks Yann for the review :-) Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2017-11-27 21:38 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-11-21 8:08 [Buildroot] [PATCH 1/2] board/qemu/ppc64-pseries: adjust Qemu command line Thomas Petazzoni 2017-11-21 8:08 ` [Buildroot] [PATCH 2/2] board/qemu/x86*: use quotes around -append Qemu option value Thomas Petazzoni 2017-11-27 20:56 ` Yann E. MORIN 2017-11-27 20:56 ` [Buildroot] [PATCH 1/2] board/qemu/ppc64-pseries: adjust Qemu command line Yann E. MORIN 2017-11-27 21:38 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox