From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LAt77-0005kE-P5 for qemu-devel@nongnu.org; Thu, 11 Dec 2008 16:30:29 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LAt76-0005j0-6R for qemu-devel@nongnu.org; Thu, 11 Dec 2008 16:30:29 -0500 Received: from [199.232.76.173] (port=36606 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LAt76-0005iv-2w for qemu-devel@nongnu.org; Thu, 11 Dec 2008 16:30:28 -0500 Received: from mail-bw0-f12.google.com ([209.85.218.12]:33645) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LAt75-0002eg-Jp for qemu-devel@nongnu.org; Thu, 11 Dec 2008 16:30:27 -0500 Received: by bwz5 with SMTP id 5so1320083bwz.10 for ; Thu, 11 Dec 2008 13:30:26 -0800 (PST) Message-ID: Date: Thu, 11 Dec 2008 23:25:23 +0200 From: "Blue Swirl" Subject: Re: [Qemu-devel] [PATCH 6/6] IBM PowerPC 440EP Bamboo reference board emulation In-Reply-To: <8d7e31f5f951172065c0bb9a6ec333a052c7ece2.1229027683.git.hollisb@us.ibm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <9de3436f36e5c5717dffa2155fe098367b4e2153.1229027683.git.hollisb@us.ibm.com> <8d7e31f5f951172065c0bb9a6ec333a052c7ece2.1229027683.git.hollisb@us.ibm.com> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kvm-ppc@vger.kernel.org On 12/11/08, Hollis Blanchard wrote: > Since most IO devices are integrated into the 440EP chip, "Bamboo support" > mostly entails implementing the -kernel, -initrd, and -append options. > > These options are implemented by loading the guest as if u-boot had done it, > i.e. loading a flat device tree, updating it to hold initrd addresses, ram > size, and command line, and passing the FDT address in r3. > > Since we use it with KVM, we enable the virtio block driver and include hooks > necessary for KVM support. > > Signed-off-by: Hollis Blanchard > --- a/target-ppc/machine.c > +++ b/target-ppc/machine.c > @@ -1,5 +1,6 @@ > #include "hw/hw.h" > #include "hw/boards.h" > +#include "kvm.h" Shouldn't be necessary?