All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH docs] Enhancing instructions on QEMU
@ 2016-07-13 20:20 OpenBMC Patches
  2016-07-13 20:20 ` OpenBMC Patches
  0 siblings, 1 reply; 7+ messages in thread
From: OpenBMC Patches @ 2016-07-13 20:20 UTC (permalink / raw)
  To: openbmc

Added step by step details on using QEMU in both a virtual
bridge and tap environment.  Latest features of QEMU palmetto
integration now allow for uboot flash support and ftgmac100
device support.  That means you can start the qemu session
from uboot and run the real ftgmac ethernet device.

Signed-off-by: Chris Austen <austenc@us.ibm.com>

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/openbmc/docs/33)
<!-- Reviewable:end -->


https://github.com/openbmc/docs/pull/33

Chris Austen (1):
  Enhancing instructions on QEMU

 cheatsheet.md | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)

-- 
2.9.0

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

* [PATCH docs] Enhancing instructions on QEMU
  2016-07-13 20:20 [PATCH docs] Enhancing instructions on QEMU OpenBMC Patches
@ 2016-07-13 20:20 ` OpenBMC Patches
  2016-07-14 16:18   ` Joel Stanley
                     ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: OpenBMC Patches @ 2016-07-13 20:20 UTC (permalink / raw)
  To: openbmc

From: Chris Austen <austenc@us.ibm.com>

Added step by step details on using QEMU in both a virtual
bridge and tap environment.  Latest features of QEMU palmetto
integration now allow for uboot flash support and ftgmac100
device support.  That means you can start the qemu session
from uboot and run the real ftgmac ethernet device.

Signed-off-by: Chris Austen <austenc@us.ibm.com>
---
 cheatsheet.md | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)

diff --git a/cheatsheet.md b/cheatsheet.md
index 873fbf9..37a9c60 100644
--- a/cheatsheet.md
+++ b/cheatsheet.md
@@ -105,6 +105,65 @@ qemu-system-arm \
 
 To quit, type `Ctrl-a c` to switch to the QEMU monitor, and then `quit` to exit.
 
+## Using QEMU With Network capabilities
+
+In an attempt to get a palmetto working model with network capabilties a fork
+was created.  The plan is to merge it back in to the qemu repo but for right now
+the steps required to build, launch and verify are as follows.
+
+Compile a Palmetto flash image via Yocto and locate the file...
+>build/tmp/deploy/images/palmetto/flash-palmetto
+
+```
+git clone git@github.com:legoater/qemu.git
+cd qemu
+git checkout aspeed
+mkdir build
+cd build
+../configure --target-list=arm-softmmu
+make
+cd arm-softmmu
+```
+
+### Use a bridge device
+Using a bridge device requires a bit of root access to set it up.  The benefit
+is your qemu session runs in the bridges subnet so no port forwarding is needed.
+There are packages needed to yourself a virbr0 such as
+```
+apt-get install libvirt libvirt-bin bridge-utils uml-utilities qemu-system-common
+```
+
+```
+./qemu-system-arm -m 256 -M palmetto-bmc -nographic \
+-drive file=<path>/flash-palmetto,format=raw,if=mtd \
+-net nic,macaddr=C0:FF:EE:00:00:02,model=ftgmac100  \
+-net bridge,id=net0,helper=/usr/lib/qemu-bridge-helper,br=virbr0
+```
+
+### Use a tap device
+When running in an environment that does not support you having root you will
+need to forward the model ports.
+```
+./qemu-system-arm -m 256 -M palmetto-bmc -nographic \
+-drive file=<path>/flash-palmetto,format=raw,if=mtd \
+-net nic \
+-net user,hostfwd=:127.0.0.1:2222-:22,hostfwd=:127.0.0.1:2443-:443,hostname=qemu \
+
+```
+Now you just need to redirect to communicate...
+```
+curl -c cjar -b cjar -k -H "Content-Type: application/json" -X POST https://localhost:2443/login -d "{\"data\": [ \"root\", \"0penBmc\" ] }"
+```
+or
+```
+ssh -p 2222 root@localhost
+```
+
+There are some other useful parms like that can redirect the console to another
+window.  This results in having an easily accessible qemu command session.
+-monitor stdio -serial pty -nodefaults
+
+
 ## Booting the host
 
 Login:
-- 
2.9.0

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

* Re: [PATCH docs] Enhancing instructions on QEMU
  2016-07-13 20:20 ` OpenBMC Patches
@ 2016-07-14 16:18   ` Joel Stanley
  2016-07-17 23:24   ` Andrew Jeffery
  2016-07-27 12:43   ` Cédric Le Goater
  2 siblings, 0 replies; 7+ messages in thread
From: Joel Stanley @ 2016-07-14 16:18 UTC (permalink / raw)
  To: OpenBMC Patches; +Cc: OpenBMC Maillist

On Thu, Jul 14, 2016 at 5:50 AM, OpenBMC Patches
<openbmc-patches@stwcx.xyz> wrote:
> From: Chris Austen <austenc@us.ibm.com>
>
> Added step by step details on using QEMU in both a virtual
> bridge and tap environment.  Latest features of QEMU palmetto
> integration now allow for uboot flash support and ftgmac100
> device support.  That means you can start the qemu session
> from uboot and run the real ftgmac ethernet device.
>
> Signed-off-by: Chris Austen <austenc@us.ibm.com>
> ---
>  cheatsheet.md | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 59 insertions(+)
>
> diff --git a/cheatsheet.md b/cheatsheet.md
> index 873fbf9..37a9c60 100644
> --- a/cheatsheet.md
> +++ b/cheatsheet.md
> @@ -105,6 +105,65 @@ qemu-system-arm \
>
>  To quit, type `Ctrl-a c` to switch to the QEMU monitor, and then `quit` to exit.
>
> +## Using QEMU With Network capabilities
> +
> +In an attempt to get a palmetto working model with network capabilties a fork
> +was created.  The plan is to merge it back in to the qemu repo but for right now
> +the steps required to build, launch and verify are as follows.
> +
> +Compile a Palmetto flash image via Yocto and locate the file...
> +>build/tmp/deploy/images/palmetto/flash-palmetto
> +
> +```
> +git clone git@github.com:legoater/qemu.git

I support the idea of better documentation on how to use Qemu.
However, this is Cedric's personal development tree. I'd be hesitant
to point users at this - it's his space for doing development, so at
any one moment it may be broken.

We are aggressively upstreaming our Qemu code. I'd suggest pointing
users to upstream for their testing.

Cheers,

Joel

> +cd qemu
> +git checkout aspeed
> +mkdir build
> +cd build
> +../configure --target-list=arm-softmmu
> +make
> +cd arm-softmmu
> +```
> +
> +### Use a bridge device
> +Using a bridge device requires a bit of root access to set it up.  The benefit
> +is your qemu session runs in the bridges subnet so no port forwarding is needed.
> +There are packages needed to yourself a virbr0 such as
> +```
> +apt-get install libvirt libvirt-bin bridge-utils uml-utilities qemu-system-common
> +```
> +
> +```
> +./qemu-system-arm -m 256 -M palmetto-bmc -nographic \
> +-drive file=<path>/flash-palmetto,format=raw,if=mtd \
> +-net nic,macaddr=C0:FF:EE:00:00:02,model=ftgmac100  \
> +-net bridge,id=net0,helper=/usr/lib/qemu-bridge-helper,br=virbr0
> +```
> +
> +### Use a tap device
> +When running in an environment that does not support you having root you will
> +need to forward the model ports.
> +```
> +./qemu-system-arm -m 256 -M palmetto-bmc -nographic \
> +-drive file=<path>/flash-palmetto,format=raw,if=mtd \
> +-net nic \
> +-net user,hostfwd=:127.0.0.1:2222-:22,hostfwd=:127.0.0.1:2443-:443,hostname=qemu \
> +
> +```
> +Now you just need to redirect to communicate...
> +```
> +curl -c cjar -b cjar -k -H "Content-Type: application/json" -X POST https://localhost:2443/login -d "{\"data\": [ \"root\", \"0penBmc\" ] }"
> +```
> +or
> +```
> +ssh -p 2222 root@localhost
> +```
> +
> +There are some other useful parms like that can redirect the console to another
> +window.  This results in having an easily accessible qemu command session.
> +-monitor stdio -serial pty -nodefaults
> +
> +
>  ## Booting the host
>
>  Login:
> --
> 2.9.0
>
>
> _______________________________________________
> openbmc mailing list
> openbmc@lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/openbmc

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

* Re: [PATCH docs] Enhancing instructions on QEMU
  2016-07-13 20:20 ` OpenBMC Patches
  2016-07-14 16:18   ` Joel Stanley
@ 2016-07-17 23:24   ` Andrew Jeffery
  2016-07-18 19:49     ` Cédric Le Goater
  2016-07-27 12:43   ` Cédric Le Goater
  2 siblings, 1 reply; 7+ messages in thread
From: Andrew Jeffery @ 2016-07-17 23:24 UTC (permalink / raw)
  To: OpenBMC Patches, openbmc, Chris Austen

[-- Attachment #1: Type: text/plain, Size: 3997 bytes --]

On Wed, 2016-07-13 at 15:20 -0500, OpenBMC Patches wrote:
> From: Chris Austen <austenc@us.ibm.com>
> 
> Added step by step details on using QEMU in both a virtual
> bridge and tap environment.  Latest features of QEMU palmetto
> integration now allow for uboot flash support and ftgmac100
> device support.  That means you can start the qemu session
> from uboot and run the real ftgmac ethernet device.
> 
> Signed-off-by: Chris Austen <austenc@us.ibm.com>
> ---
>  cheatsheet.md | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 59 insertions(+)
> 
> diff --git a/cheatsheet.md b/cheatsheet.md
> index 873fbf9..37a9c60 100644
> --- a/cheatsheet.md
> +++ b/cheatsheet.md
> @@ -105,6 +105,65 @@ qemu-system-arm \
>  
>  To quit, type `Ctrl-a c` to switch to the QEMU monitor, and then `quit` to exit.
>  
> +## Using QEMU With Network capabilities
> +
> +In an attempt to get a palmetto working model with network capabilties a fork
> +was created.  The plan is to merge it back in to the qemu repo but for right now
> +the steps required to build, launch and verify are as follows.
> +
> +Compile a Palmetto flash image via Yocto and locate the file...
> +>build/tmp/deploy/images/palmetto/flash-palmetto
> +
> +```
> +git clone git@github.com:legoater/qemu.git

I agree with Joel here, I don't think we should be patching the docs to
point at someone's "private" tree. It's not great that openbmc/qemu
isn't yet suitable for you, but I'll try to resolve that as soon as I
can.

> +cd qemu
> +git checkout aspeed
> +mkdir build
> +cd build
> +../configure --target-list=arm-softmmu
> +make
> +cd arm-softmmu
> +```
> +
> +### Use a bridge device
> +Using a bridge device requires a bit of root access to set it up.  The benefit
> +is your qemu session runs in the bridges subnet so no port forwarding is needed.
> +There are packages needed to yourself a virbr0 such as
> +```
> +apt-get install libvirt libvirt-bin bridge-utils uml-utilities qemu-system-common
> +```
> +
> +```
> +./qemu-system-arm -m 256 -M palmetto-bmc -nographic \
> +-drive file=/flash-palmetto,format=raw,if=mtd \
> +-net nic,macaddr=C0:FF:EE:00:00:02,model=ftgmac100  \
> +-net bridge,id=net0,helper=/usr/lib/qemu-bridge-helper,br=virbr0
> +```
> +
> +### Use a tap device
> +When running in an environment that does not support you having root you will
> +need to forward the model ports.
> +```
> +./qemu-system-arm -m 256 -M palmetto-bmc -nographic \
> +-drive file=/flash-palmetto,format=raw,if=mtd \
> +-net nic \
> +-net user,hostfwd=:127.0.0.1:2222-:22,hostfwd=:127.0.0.1:2443-:443,hostname=qemu \
> +
> +```
> +Now you just need to redirect to communicate...
> +```
> +curl -c cjar -b cjar -k -H "Content-Type: application/json" -X POST https://localhost:2443/login -d "{\"data\": [ \"root\", \"0penBmc\" ] }"
> +```
> +or
> +```
> +ssh -p 2222 root@localhost
> +```
> +
> +There are some other useful parms like that can redirect the console to another
> +window.  This results in having an easily accessible qemu command session.
> +-monitor stdio -serial pty -nodefaults
> +
> +

At face value I don't think all of this information belongs in the
cheatsheet (I haven't tried out the commandlines or verified their
behaviour against the text, so I may send a follow-up email along those
lines). I'd suggest a separate qemu document if this is the type of
content you want to add. My aim with the existing cheatsheet entry was
to provide the least amount of supporting words for the commandline to
have context, and explicitly avoided step-by-step instructions like
"how to build".

Given the openbmc/qemu repository supports booting from the flash image
the existing cheatsheet commandline should be updated. Again, I hope to
address the differences between openbmc/qemu and legoater/qemu soon.

Cheers,

Andrew

>  ## Booting the host
>  
>  Login:

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

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

* Re: [PATCH docs] Enhancing instructions on QEMU
  2016-07-17 23:24   ` Andrew Jeffery
@ 2016-07-18 19:49     ` Cédric Le Goater
  2016-07-19  1:03       ` Joel Stanley
  0 siblings, 1 reply; 7+ messages in thread
From: Cédric Le Goater @ 2016-07-18 19:49 UTC (permalink / raw)
  To: Andrew Jeffery, OpenBMC Patches, openbmc, Chris Austen

On 07/18/2016 01:24 AM, Andrew Jeffery wrote:
> On Wed, 2016-07-13 at 15:20 -0500, OpenBMC Patches wrote:
>> From: Chris Austen <austenc@us.ibm.com>
>>
>> Added step by step details on using QEMU in both a virtual
>> bridge and tap environment.  Latest features of QEMU palmetto
>> integration now allow for uboot flash support and ftgmac100
>> device support.  That means you can start the qemu session
>> from uboot and run the real ftgmac ethernet device.
>>
>> Signed-off-by: Chris Austen <austenc@us.ibm.com>
>> ---
>>  cheatsheet.md | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>  1 file changed, 59 insertions(+)
>>
>> diff --git a/cheatsheet.md b/cheatsheet.md
>> index 873fbf9..37a9c60 100644
>> --- a/cheatsheet.md
>> +++ b/cheatsheet.md
>> @@ -105,6 +105,65 @@ qemu-system-arm \
>>  
>>  To quit, type `Ctrl-a c` to switch to the QEMU monitor, and then `quit` to exit.
>>  
>> +## Using QEMU With Network capabilities
>> +
>> +In an attempt to get a palmetto working model with network capabilties a fork
>> +was created.  The plan is to merge it back in to the qemu repo but for right now
>> +the steps required to build, launch and verify are as follows.
>> +
>> +Compile a Palmetto flash image via Yocto and locate the file...
>> +>build/tmp/deploy/images/palmetto/flash-palmetto
>> +
>> +```
>> +git clone git@github.com:legoater/qemu.git
> 
> I agree with Joel here, I don't think we should be patching the docs to
> point at someone's "private" tree. It's not great that openbmc/qemu
> isn't yet suitable for you, but I'll try to resolve that as soon as I
> can.
> 
>> +cd qemu
>> +git checkout aspeed
>> +mkdir build
>> +cd build
>> +../configure --target-list=arm-softmmu
>> +make
>> +cd arm-softmmu
>> +```
>> +
>> +### Use a bridge device
>> +Using a bridge device requires a bit of root access to set it up.  The benefit
>> +is your qemu session runs in the bridges subnet so no port forwarding is needed.
>> +There are packages needed to yourself a virbr0 such as
>> +```
>> +apt-get install libvirt libvirt-bin bridge-utils uml-utilities qemu-system-common
>> +```
>> +
>> +```
>> +./qemu-system-arm -m 256 -M palmetto-bmc -nographic \
>> +-drive file=/flash-palmetto,format=raw,if=mtd \
>> +-net nic,macaddr=C0:FF:EE:00:00:02,model=ftgmac100  \
>> +-net bridge,id=net0,helper=/usr/lib/qemu-bridge-helper,br=virbr0
>> +```
>> +
>> +### Use a tap device
>> +When running in an environment that does not support you having root you will
>> +need to forward the model ports.
>> +```
>> +./qemu-system-arm -m 256 -M palmetto-bmc -nographic \
>> +-drive file=/flash-palmetto,format=raw,if=mtd \
>> +-net nic \
>> +-net user,hostfwd=:127.0.0.1:2222-:22,hostfwd=:127.0.0.1:2443-:443,hostname=qemu \
>> +
>> +```
>> +Now you just need to redirect to communicate...
>> +```
>> +curl -c cjar -b cjar -k -H "Content-Type: application/json" -X POST https://localhost:2443/login -d "{\"data\": [ \"root\", \"0penBmc\" ] }"
>> +```
>> +or
>> +```
>> +ssh -p 2222 root@localhost
>> +```
>> +
>> +There are some other useful parms like that can redirect the console to another
>> +window.  This results in having an easily accessible qemu command session.
>> +-monitor stdio -serial pty -nodefaults
>> +
>> +
> 
> At face value I don't think all of this information belongs in the
> cheatsheet (I haven't tried out the commandlines or verified their
> behaviour against the text, so I may send a follow-up email along those
> lines). I'd suggest a separate qemu document if this is the type of
> content you want to add. My aim with the existing cheatsheet entry was
> to provide the least amount of supporting words for the commandline to
> have context, and explicitly avoided step-by-step instructions like
> "how to build".
> 
> Given the openbmc/qemu repository supports booting from the flash image
> the existing cheatsheet commandline should be updated. Again, I hope to
> address the differences between openbmc/qemu and legoater/qemu soon.

I will have more time next week to do a resync of openbmc/qemu if you 
don't. 2.7-rc should be out then, so it will be the moment to rebase.

I would also like to merge the ast2400 and ast2500 soc model. They share 
enough code to have a common base, configured by a cpu model property 
and a silicon revision property. It shouldn't be too complex to push 
at the same time.

Thanks,

C.



 


C.

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

* Re: [PATCH docs] Enhancing instructions on QEMU
  2016-07-18 19:49     ` Cédric Le Goater
@ 2016-07-19  1:03       ` Joel Stanley
  0 siblings, 0 replies; 7+ messages in thread
From: Joel Stanley @ 2016-07-19  1:03 UTC (permalink / raw)
  To: Cédric Le Goater
  Cc: Andrew Jeffery, OpenBMC Patches, OpenBMC Maillist, Chris Austen

On Tue, Jul 19, 2016 at 5:19 AM, Cédric Le Goater <clg@kaod.org> wrote:
> I will have more time next week to do a resync of openbmc/qemu if you
> don't. 2.7-rc should be out then, so it will be the moment to rebase.
>
> I would also like to merge the ast2400 and ast2500 soc model. They share
> enough code to have a common base, configured by a cpu model property
> and a silicon revision property. It shouldn't be too complex to push
> at the same time.

This sounds nice!

Cheers,

Joel

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

* Re: [PATCH docs] Enhancing instructions on QEMU
  2016-07-13 20:20 ` OpenBMC Patches
  2016-07-14 16:18   ` Joel Stanley
  2016-07-17 23:24   ` Andrew Jeffery
@ 2016-07-27 12:43   ` Cédric Le Goater
  2 siblings, 0 replies; 7+ messages in thread
From: Cédric Le Goater @ 2016-07-27 12:43 UTC (permalink / raw)
  To: OpenBMC Patches, openbmc

On 07/13/2016 10:20 PM, OpenBMC Patches wrote:
> From: Chris Austen <austenc@us.ibm.com>
> 
> Added step by step details on using QEMU in both a virtual
> bridge and tap environment.  Latest features of QEMU palmetto
> integration now allow for uboot flash support and ftgmac100
> device support.  That means you can start the qemu session
> from uboot and run the real ftgmac ethernet device.
> 
> Signed-off-by: Chris Austen <austenc@us.ibm.com>
> ---
>  cheatsheet.md | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 59 insertions(+)
> 
> diff --git a/cheatsheet.md b/cheatsheet.md
> index 873fbf9..37a9c60 100644
> --- a/cheatsheet.md
> +++ b/cheatsheet.md
> @@ -105,6 +105,65 @@ qemu-system-arm \
>  
>  To quit, type `Ctrl-a c` to switch to the QEMU monitor, and then `quit` to exit.
>  
> +## Using QEMU With Network capabilities
> +
> +In an attempt to get a palmetto working model with network capabilties a fork
> +was created.  The plan is to merge it back in to the qemu repo but for right now
> +the steps required to build, launch and verify are as follows.
> +
> +Compile a Palmetto flash image via Yocto and locate the file...
> +>build/tmp/deploy/images/palmetto/flash-palmetto
> +
> +```
> +git clone git@github.com:legoater/qemu.git

git clone  https://github.com/openbmc/qemu


> +cd qemu
> +git checkout aspeed
> +mkdir build
> +cd build
> +../configure --target-list=arm-softmmu
> +make
> +cd arm-softmmu
> +```
> +
> +### Use a bridge device
> +Using a bridge device requires a bit of root access to set it up.  The benefit
> +is your qemu session runs in the bridges subnet so no port forwarding is needed.
> +There are packages needed to yourself a virbr0 such as
> +```
> +apt-get install libvirt libvirt-bin bridge-utils uml-utilities qemu-system-common
> +```
> +
> +```
> +./qemu-system-arm -m 256 -M palmetto-bmc -nographic \
> +-drive file=<path>/flash-palmetto,format=raw,if=mtd \
> +-net nic,macaddr=C0:FF:EE:00:00:02,model=ftgmac100  \

That's my preferred MAC ! :)

you will have to do a "setenv ethaddr" in u-boot for the MAC to be taken
into account like on a real system. 

> +-net bridge,id=net0,helper=/usr/lib/qemu-bridge-helper,br=virbr0
> +```

eventually add : 

	run this command :

		sudo chmod +s /usr/lib/qemu-bridge-helper

	to be able to launch the guest without being root.



I think you could even define a virt domain[1] for the ast guest and use
the virsh command to start, destroy, get the console, etc. 

Cheers,

C.

[1] http://libvirt.org/formatdomain.html


> +### Use a tap device
> +When running in an environment that does not support you having root you will
> +need to forward the model ports.
> +```
> +./qemu-system-arm -m 256 -M palmetto-bmc -nographic \
> +-drive file=<path>/flash-palmetto,format=raw,if=mtd \
> +-net nic \
> +-net user,hostfwd=:127.0.0.1:2222-:22,hostfwd=:127.0.0.1:2443-:443,hostname=qemu \
> +
> +```
> +Now you just need to redirect to communicate...
> +```
> +curl -c cjar -b cjar -k -H "Content-Type: application/json" -X POST https://localhost:2443/login -d "{\"data\": [ \"root\", \"0penBmc\" ] }"
> +```
> +or
> +```
> +ssh -p 2222 root@localhost
> +```
> +
> +There are some other useful parms like that can redirect the console to another
> +window.  This results in having an easily accessible qemu command session.
> +-monitor stdio -serial pty -nodefaults
> +
> +
>  ## Booting the host
>  
>  Login:
> 

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

end of thread, other threads:[~2016-07-27 12:52 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-13 20:20 [PATCH docs] Enhancing instructions on QEMU OpenBMC Patches
2016-07-13 20:20 ` OpenBMC Patches
2016-07-14 16:18   ` Joel Stanley
2016-07-17 23:24   ` Andrew Jeffery
2016-07-18 19:49     ` Cédric Le Goater
2016-07-19  1:03       ` Joel Stanley
2016-07-27 12:43   ` Cédric Le Goater

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.