Re: [Qemu-devel] [Qemu-ppc] [PULL 01/28] target-ppc: Use sensible POWER8/POWER8E versions

2016-01-29 Thread Stewart Smith
ild, but I'm pretty sure there's < 1.0 of them left inside IBM. Literally 0 users who expect *anything* to work. -- Stewart Smith OPAL Architect, IBM.

Re: [Qemu-devel] [Qemu-ppc] [PATCH 00/77] ppc: Add "native" POWER8 platform

2015-12-06 Thread Stewart Smith
Cédric Le Goater writes: > On 11/28/2015 08:59 AM, Benjamin Herrenschmidt wrote: >> On Fri, 2015-11-27 at 11:21 +0100, Alexander Graf wrote: >>> >>> How does real hardware store petitboot? If it's flash, you could pass it >>> in using -pflash and thus model things even more closely and allow users

Re: [Qemu-devel] [Qemu-ppc] [PATCH 26/77] ppc/pnv: Add skeletton PowerNV platform

2015-11-19 Thread Stewart Smith
Benjamin Herrenschmidt writes: > --- /dev/null > +++ b/hw/ppc/pnv.c > @@ -0,0 +1,600 @@ > +static void *powernv_create_fdt(PnvSystem *sys, uint32_t initrd_base, > uint32_t initrd_size) > +{ > +_FDT((fdt_begin_node(fdt, "chosen"))); > +_FDT((fdt_property(fdt, "linux,initrd-start", > +

Re: [Qemu-devel] [Qemu-ppc] [PATCH 04/77] target-ppc: Use sensible POWER8/POWER8E versions

2015-11-10 Thread Stewart Smith
he chip. We were getting it wrong with mambo a while ago and it caused some oddness. There's zero reason for anyone to use pre-production processors these days, so: Acked-by: Stewart Smith

Re: [Qemu-devel] [Qemu-ppc] [PATCH 00/77] ppc: Add "native" POWER8 platform

2015-11-10 Thread Stewart Smith
Benjamin Herrenschmidt writes: > This requires an OPAL firmware file which isn't included yet, > will emulate enough to boot existing distros and run KVM > inside TCG For anyone wanting to try out this patchset, to build skiboot.lid, grab https://github.com/open-power/skiboot.git and build. You'

Re: [Qemu-devel] [Qemu-ppc] [PATCH RFC 0/4] Mac OS 9 compatibility improvements

2015-09-11 Thread Stewart Smith
Mark Cave-Ayland writes: > I can confirm here that in combination with an updated OpenBIOS then the > patchset gets qemu-system-ppc -M mac99 to the OS 9 loading screen, which > is great progress! > > When booting OS 9 with this patchset I do see the following output on > the console: > > Trying to

Re: [Qemu-devel] [PATCH v2] ppc: Force CPU threads count to be a power of 2.

2014-03-05 Thread Stewart Smith
from QEMU itself by > validating the user supplied threads count. > > Signed-off-by: Bharata B Rao Reviewed-by: Stewart Smith

Re: [Qemu-devel] [RFC PATCH v0] ppc: Force CPU threads count to be a power of 2.

2014-03-03 Thread Stewart Smith
{ I'd suggest adding "(must be power of 2)" to the error message somewhere. with that, Acked-by: Stewart Smith

Re: [Qemu-devel] Qemu Bare metal Query

2014-02-06 Thread Stewart Smith
Mj Embd writes: > Is it possible to run Qemu bare metal , after u-boot like linux is > loaded from u-boot? > Like running qemu from u-boot bootm command? > > - Reset | Uboot | Qemu > > Usually qemu runs on host os, so there would be some dependencies, how > to find what all dependencies are there?

[Qemu-devel] [Bug 942299] Re: Regression in booting HelenOS/ppc under Qemu

2014-01-27 Thread Stewart Smith
Works in current qemu trunk, setting Fix Released. ** Changed in: qemu Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/942299 Title: Regression in bootin

[Qemu-devel] [Bug 623852] Re: PPC emulation loops on booting a FreeBSD kernel

2014-01-23 Thread Stewart Smith
On 732c66ce641c69702a7e7fdb73b68f0c1b583ab5, I instead get: Welcome to OpenBIOS v1.1 built on Oct 2 2013 22:57 Trying cd:,\\:tbxi... Consoles: Open Firmware console FreeBSD/powerpc Open Firmware loader, Revision 0.1 (r...@xserve.lan.xcllnt.net, Sun Jul 18 04:50:11 UTC 2010) Memory: 96256KB Boo

[Qemu-devel] [PATCH v2 4/6] configure: add help for --disable-xfsctl and --enable-xfsctl

2014-01-23 Thread Stewart Smith
Previously undocumented configure options Signed-off-by: Stewart Smith --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index c225291..e607ebf 100755 --- a/configure +++ b/configure @@ -1252,6 +1252,8 @@ Advanced options, features (experts only

[Qemu-devel] [PATCH v2 6/6] configure: helpfully output package names for some missing dependencies.

2014-01-23 Thread Stewart Smith
This just makes it a tiny bit easier for new developers to get started by making it easy to see what package they need to install to get the dependency. Signed-off-by: Stewart Smith --- configure | 12 ++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/configure b

[Qemu-devel] [PATCH v2 5/6] configure: add hints to a remedy for feature_not_found errors

2014-01-23 Thread Stewart Smith
ow to remedy myself. Signed-off-by: Stewart Smith --- configure | 68 --- 1 file changed, 35 insertions(+), 33 deletions(-) diff --git a/configure b/configure index e607ebf..4ad2de5 100755 --- a/configure +++ b/configure @@ -1472,9 +14

[Qemu-devel] [PATCH v2 0/6] configure: make output and errors more friendly

2014-01-23 Thread Stewart Smith
ering of output from configure and configure --help which I found rather useful when attempting to find what package was needed for each configure option. Stewart Smith (6): configure: add hint of libfdt to DTC dependency not found message configure: sort output of configure results alphab

[Qemu-devel] [PATCH v2 1/6] configure: add hint of libfdt to DTC dependency not found message

2014-01-23 Thread Stewart Smith
Most distros package it as libfdt, and mentioning libfdt here makes it much easier to find the package you're missing. Signed-off-by: Stewart Smith --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 3782a6a..8b6e64a 100755

[Qemu-devel] [PATCH v2 2/6] configure: sort output of configure results alphabetically

2014-01-23 Thread Stewart Smith
Keep the paths and compiler/target details at the top, but sort all the yes/no features alphabetically, making it much easier to both browse through and to check if a feature you want has been enabled or not. Eyes can be faster than grep. Signed-off-by: Stewart Smith --- configure | 118

[Qemu-devel] [PATCH v2 3/6] configure: alphabetize output of --help and separate into groups

2014-01-23 Thread Stewart Smith
This should make it (slightly) easier to discover configure options. I've tried to separate out build options (e.g. gcov) from feature options (such as gtk). Signed-off-by: Stewart Smith --- configure | 174 -- 1 file change

Re: [Qemu-devel] [PATCH] configure: helpfully output package names for some missing dependencies.

2014-01-23 Thread Stewart Smith
Stefan Weil writes: > Am 23.01.2014 05:54, schrieb Stewart Smith: >> diff --git a/configure b/configure >> index 3782a6a..87303f6 100755 >> --- a/configure >> +++ b/configure >> @@ -1532,7 +1532,9 @@ EOF >> : >> else >> err

[Qemu-devel] [PATCH] configure: helpfully output package names for some missing dependencies.

2014-01-22 Thread Stewart Smith
This just makes it a tiny bit easier for new developers to get started by making it easy to see what package they need to install to get the dependency. Signed-off-by: Stewart Smith --- configure | 12 ++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/configure b