[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH] IDE: Implement SEEK command (resend)
From: |
Justin Chevrier |
Subject: |
[Qemu-devel] [PATCH] IDE: Implement SEEK command (resend) |
Date: |
Wed, 10 Dec 2008 07:44:04 -0800 (PST) |
Resend original patch with correct Signed-off-by. Original text below.
Openserver issues a SEEK command during initial drive detection. It refuses to
report the hard drive if this command fails. This patch gets Openserver to list
the hard drive but installation still fails (freezes) later on due to an
unrelated IDE issue (patch on its way).
Justin
Changelog:
Implement SEEK command
Signed-off-by: Justin Chevrier <address@hidden>
Index: hw/ide.c
===================================================================
--- hw/ide.c (revision 5948)
+++ hw/ide.c (working copy)
@@ -2324,6 +2324,13 @@
s->status = READY_STAT;
ide_set_irq(s);
break;
+ case WIN_SEEK:
+ if(s->is_cdrom)
+ goto abort_cmd;
+ /* XXX: Check that seek is within bounds */
+ s->status = READY_STAT | SEEK_STAT;
+ ide_set_irq(s);
+ break;
/* ATAPI commands */
case WIN_PIDENTIFY:
if (s->is_cdrom) {
- [Qemu-devel] [PATCH] IDE: Implement SEEK command (resend),
Justin Chevrier <=