From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1BahC0-0002tL-1g for qemu-devel@nongnu.org; Wed, 16 Jun 2004 16:39:32 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1BahBy-0002sn-AB for qemu-devel@nongnu.org; Wed, 16 Jun 2004 16:39:31 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BahBy-0002sk-4X for qemu-devel@nongnu.org; Wed, 16 Jun 2004 16:39:30 -0400 Received: from [131.188.30.103] (helo=faui03.informatik.uni-erlangen.de) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1BahAU-00063l-PM for qemu-devel@nongnu.org; Wed, 16 Jun 2004 16:37:59 -0400 Received: from faui03.informatik.uni-erlangen.de (faui03.informatik.uni-erlangen.de [131.188.30.103]) by faui03.informatik.uni-erlangen.de (8.12.9/8.12.9) with ESMTP id i5GKbuLT000050 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 16 Jun 2004 20:37:56 GMT Received: (from sithglan@localhost) by faui03.informatik.uni-erlangen.de (8.12.9/8.12.9) id i5GKbuev000049 for qemu-devel@nongnu.org; Wed, 16 Jun 2004 22:37:56 +0200 (CEST) Date: Wed, 16 Jun 2004 22:37:56 +0200 From: Thomas Glanzmann Subject: Re: [Qemu-devel] Debian SID installation - IDE multimode problem Message-ID: <20040616203756.GI24043@cip.informatik.uni-erlangen.de> References: <200406162232.27615.jm@poure.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200406162232.27615.jm@poure.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 Mailing List Hi, > Do you know what it means? that means that maybe something has to be fixed in the ide simulator of qemu. But you can disable MULTIMODE by editing hw/ide.c and set this: /* set to 1 set disable mult support */ #define MAX_MULT_SECTORS 16 to this: /* set to 1 set disable mult support */ #define MAX_MULT_SECTORS 1 It is located around line 188. And retry. Maybe it helps you at the moment. Thomas