From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L7xBL-0007P6-Gv for qemu-devel@nongnu.org; Wed, 03 Dec 2008 14:14:43 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L7xBJ-0007N1-Um for qemu-devel@nongnu.org; Wed, 03 Dec 2008 14:14:43 -0500 Received: from [199.232.76.173] (port=52722 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L7xBJ-0007Ml-Ll for qemu-devel@nongnu.org; Wed, 03 Dec 2008 14:14:41 -0500 Received: from moutng.kundenserver.de ([212.227.126.187]:61028) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1L7xBI-0004Wo-SI for qemu-devel@nongnu.org; Wed, 03 Dec 2008 14:14:41 -0500 Received: from localhost ([127.0.0.1] ident=stefan) by flocke.weilnetz.de with esmtp (Exim 4.69) (envelope-from ) id 1L7xBD-0001Lr-Nl for qemu-devel@nongnu.org; Wed, 03 Dec 2008 20:14:35 +0100 Message-ID: <4936DA9B.4030106@mail.berlios.de> Date: Wed, 03 Dec 2008 20:14:35 +0100 From: Stefan Weil MIME-Version: 1.0 Subject: [Qemu-devel][PATCH] Fix man page (Was: Mistake in qemu man page?) References: <493629F6.3020905@walkingfish.com> In-Reply-To: <493629F6.3020905@walkingfish.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit 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 Ryan Hayle schrieb: > The qemu man page includes an "hda" parameter to -soundhw, which I > think must be a mistake... > > -soundhw card1[,card2,...] or -soundhw all > Enable audio and selected sound hardware. Use ? to print all > available sound hardware. > > qemu -soundhw sb16,adlib hda > qemu -soundhw es1370 hda > qemu -soundhw ac97 hda > qemu -soundhw all hda > qemu -soundhw ? > > > At first I thought you had added emulating an Intel HDA sound adapter, > but since it's not in the list of sound drivers, I thought I would > post it here. > > Ryan > > > Here is a patch which changes the misleading part: Fix documentation for command line option -soundhw Signed-off-by: Stefan Weil Index: qemu-doc.texi =================================================================== --- qemu-doc.texi (Revision 5863) +++ qemu-doc.texi (Arbeitskopie) @@ -371,10 +371,10 @@ available sound hardware. @example -qemu -soundhw sb16,adlib hda -qemu -soundhw es1370 hda -qemu -soundhw ac97 hda -qemu -soundhw all hda +qemu -soundhw sb16,adlib +qemu -soundhw es1370 +qemu -soundhw ac97 +qemu -soundhw all qemu -soundhw ? @end example