[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH] IDE: Implement SEEK command
From: |
Justin Chevrier |
Subject: |
[Qemu-devel] [PATCH] IDE: Implement SEEK command |
Date: |
Mon, 8 Dec 2008 08:13:03 -0800 (PST) |
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) {
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Qemu-devel] [PATCH] IDE: Implement SEEK command,
Justin Chevrier <=