From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KyMVV-0006vR-7q for qemu-devel@nongnu.org; Fri, 07 Nov 2008 03:15:53 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KyMVT-0006uw-O8 for qemu-devel@nongnu.org; Fri, 07 Nov 2008 03:15:52 -0500 Received: from [199.232.76.173] (port=44480 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KyMVT-0006ur-90 for qemu-devel@nongnu.org; Fri, 07 Nov 2008 03:15:51 -0500 Received: from mx20.gnu.org ([199.232.41.8]:9236) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KyMVT-0001cz-7U for qemu-devel@nongnu.org; Fri, 07 Nov 2008 03:15:51 -0500 Received: from smtp2-g19.free.fr ([212.27.42.28]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KyMVS-0005Wg-9l for qemu-devel@nongnu.org; Fri, 07 Nov 2008 03:15:50 -0500 Received: from smtp2-g19.free.fr (localhost.localdomain [127.0.0.1]) by smtp2-g19.free.fr (Postfix) with ESMTP id 3832612B6C9 for ; Fri, 7 Nov 2008 09:15:47 +0100 (CET) Received: from laptop (vaf26-2-82-244-111-82.fbx.proxad.net [82.244.111.82]) by smtp2-g19.free.fr (Postfix) with ESMTP id E973A12B707 for ; Fri, 7 Nov 2008 09:15:46 +0100 (CET) In-Reply-To: <1784605671-BeMail@laptop> Subject: [Qemu-devel] atapi on ppc issue (was Re: qemu-system-ppc broken ?) From: "=?windows-1252?q?Fran=E7ois?= Revol" Date: Fri, 07 Nov 2008 09:19:59 +0100 CET Message-Id: <3383842040-BeMail@laptop> Mime-Version: 1.0 Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: quoted-printable 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 > Though I still can't seem to get OpenHackware to read the CD: > ERROR: ATAPI TEST=5FUNIT=5FREADY : status 50 !=3D 0x40 Replying to myself, it seems this works around the issue, at least it goes further. I suppose OpenHackware only compares instead of checking the ready bit... Btw, it seems the OH website is gone. http://perso.magic.fr/l=5Findien just gives a 403... For the time being archive.org can be used to dig the sources though: http://web.archive.org/web/%2a/perso.magic.fr/l=5Findien/OpenHackWare/%2a Fran=E7ois. Index: hw/ide.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- hw/ide.c (r=E9vision 5643) +++ hw/ide.c (copie de travail) @@ -1088,7 +1088,7 @@ static void ide=5Fatapi=5Fcmd=5Fok(IDEState *s) { s->error =3D 0; - s->status =3D READY=5FSTAT | SEEK=5FSTAT; + s->status =3D READY=5FSTAT /*| SEEK=5FSTAT*/; s->nsector =3D (s->nsector & ~7) | ATAPI=5FINT=5FREASON=5FIO | ATAPI=5FINT=5FREASON=5FCD; ide=5Fset=5Firq(s); }