From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1GZvAk-0003eJ-HX for qemu-devel@nongnu.org; Tue, 17 Oct 2006 16:04:22 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1GZvAj-0003b1-IL for qemu-devel@nongnu.org; Tue, 17 Oct 2006 16:04:22 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GZvAj-0003aO-Cu for qemu-devel@nongnu.org; Tue, 17 Oct 2006 16:04:21 -0400 Received: from [65.74.133.4] (helo=mail.codesourcery.com) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1GZvAi-0005Nc-MO for qemu-devel@nongnu.org; Tue, 17 Oct 2006 16:04:21 -0400 From: Paul Brook Subject: Re: [Qemu-devel] Patch for SCSI externals Date: Tue, 17 Oct 2006 21:04:14 +0100 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200610172104.15080.paul@codesourcery.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: Chuck Brazie On Tuesday 17 October 2006 19:42, Chuck Brazie wrote: > Here is a path to enable the SCSI disk support in QEMU. > Let me know your thoughts, etc. This is my first time at some open source > updates... I think it would be better to unify the ide and scsi options. I suggest something like the -net options: -disk [file=],[type={disk,cdrom}][,id={ide,scsi}[N]] [,format={raw,qcow,...}] With the existing options being aliases, eg. -hda fat:foo => -disk file=foo,type-disk,id=ide0,type=vfat -cdrom bar => -disk bar,type=cdrom,id=ide2 Then make the device emulation lookup devices by id. Either that or just implement config file support. Paul