From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:53942) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VLYL0-0000bS-Va for Qemu-devel@nongnu.org; Mon, 16 Sep 2013 08:55:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VLYKu-00038E-Tu for Qemu-devel@nongnu.org; Mon, 16 Sep 2013 08:55:34 -0400 Received: from mx1.redhat.com ([209.132.183.28]:17932) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VLYKu-00038A-JK for Qemu-devel@nongnu.org; Mon, 16 Sep 2013 08:55:28 -0400 Message-ID: <1379336124.28744.17.camel@nilsson.home.kraxel.org> From: Gerd Hoffmann Date: Mon, 16 Sep 2013 14:55:24 +0200 In-Reply-To: <8b90976a8d824414a10e656ebbc67202@mspexmb1.Beer.Town> References: <20130910172934.GB3913@redhat.com> <20130910174946.GB4065@redhat.com> <8b90976a8d824414a10e656ebbc67202@mspexmb1.Beer.Town> Content-Type: text/plain; charset="UTF-8" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] Q35 FreeBSD install status List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Bret Ketchum Cc: "Qemu-devel@nongnu.org" , "mst@redhat.com" On Mo, 2013-09-16 at 12:28 +0000, Bret Ketchum wrote: > As a workaround until I can uncover the qemu/FreeBSD AHCI/SATA issue, I simply create a legacy IDE to hang the CD and HD from: > > -device piix4-ide \ No need for that one. > -drive if=none,file=/home/ehv/images/FreeBSD-9.1-RELEASE-amd64-dvd1.iso,id=drive-ide0-0-0 \ > -device ide-cd,bus=ide.0,drive=drive-ide0-0-0,id=ide0-0-0 \ > -drive if=none,file=/home/ehv/images/r060501.img,format=raw,id=drive-ide0-0-1 \ > -device ide-hd,bus=ide.0,drive=drive-ide0-0-1,id=ide0-0-1 \ The busses of the q35 ahci controller are named "ide.0" ... "ide.5" (for sata ports 1..6). Just use these with -device ide-{hd,cd}. Each device needs its own bus, master/slave doesn't exist with sata. HTH, Gerd