From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=43860 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q2VHw-0005Js-2N for qemu-devel@nongnu.org; Wed, 23 Mar 2011 17:08:22 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q2VHt-0000Jp-8e for qemu-devel@nongnu.org; Wed, 23 Mar 2011 17:08:18 -0400 Received: from gate.crashing.org ([63.228.1.57]:53535) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q2VHs-0000Jd-Vi for qemu-devel@nongnu.org; Wed, 23 Mar 2011 17:08:17 -0400 From: Benjamin Herrenschmidt In-Reply-To: References: <1300858247-8197-1-git-send-email-david@gibson.dropbear.id.au> Content-Type: text/plain; charset="UTF-8" Date: Thu, 24 Mar 2011 08:08:09 +1100 Message-ID: <1300914489.2402.387.camel@pasglop> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] Re: [0/27] Implement emulation of pSeries logical partitions (v4) List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Graf Cc: paulus@samba.org, qemu-devel@nongnu.org, David Gibson On Wed, 2011-03-23 at 15:45 +0100, Alexander Graf wrote: > > What's the magic to start a guest? I tried passing a disk which SLOF > didn't detect (obviously - there's no IDE there). I also tried running > a kernel directly with -kernel which gave me no output. How are you > usually running your images? hrm... you using -M pseries right ? so -kernel should work with a kernel that is compiled for the pseries platform (and it won't use SLOF). a disk should work with SLOF if you use the default which is scsi (ie pseries machine sets that flag that tells qemu to default to scsi, which is then picked up by our vscsi). IE. You should be able to stick a distro ISO in the virtual CD-ROM and boot from that with SLOF. SLOF will read the qemu boot list (tho it only knows about "c", "d" and "n" at that stage) and try them in order. Cheers, Ben.