QEMU 2.10.0

Joel Stanley joel at jms.id.au
Tue Sep 12 19:07:33 AEST 2017


On Tue, Sep 12, 2017 at 5:26 PM, Cédric Le Goater <clg at kaod.org> wrote:
> On 09/12/2017 09:12 AM, Andrew Jeffery wrote:
>> Hello,
>>
>> I've updated openbmc/qemu's master to 2.10.0. For anyone maintaining
>> patches on top of master I've merged the old master state into 2.10.0
>> with the --ours strategy, then applied the series Cédric is maintaining
>> on top. This means any patches you might have on top of master should
>> rebase easily due to shared history, whilst keeping our yet-to-be-
>> upstreamed patches in an easily identified set.
>
> Here are some updates on the QEMU wiki :
>
>         https://github.com/openbmc/qemu/wiki

Thanks Andrew and Cedric.

I built myself openbmc/qemu master and tried to boot a dev-4.10 kernel
with a simple busybox based userspace on it. It hangs at "Starting
network".

I was previously using Cedric's 'aspeed' branch from a long time ago.

This is my little qemu script that I use. Can you reproduce? Or tell
me what I'm doing wrong here?

 #!/bin/bash

: ${BMC_CS1:=/srv/tftp/flash-witherspoon}
: ${BMC_CS2:=${BMC_CS1}}
: ${PNOR:=/srv/tftp/witherspoon.pnor}

~/dev/qemu/openbmc/arm-softmmu/qemu-system-arm -m 512 -M witherspoon-bmc \
-nodefaults -nographic -serial stdio \
-net nic -net user,hostname=qemu,hostfwd=::2222-:22,hostfwd=::2623-:623 \
-drive file=${BMC_CS1},format=raw,if=mtd \
-drive file=${BMC_CS2},format=raw,if=mtd \
-drive file=${PNOR},format=raw,if=mtd \
"$@"

Cheers,

Joel


More information about the openbmc mailing list