Message ID | 20090324084321.GA30294@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Tue, Mar 24, 2009 at 11:03:12AM +0100, Tomasz Chmielewski wrote: > Gleb Natapov schrieb: >> This fixes Vista boot from virtio-blk issue. > > Did I miss Windows virtio block drivers? ;) > With this patch you'll get better experience with virtio block drivers when they will be released! :) -- Gleb. -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Gleb Natapov schrieb:
> This fixes Vista boot from virtio-blk issue.
Did I miss Windows virtio block drivers? ;)
Gleb Natapov wrote: > This fixes Vista boot from virtio-blk issue. > > Applied, thanks.
Gleb Natapov wrote: > On Tue, Mar 24, 2009 at 11:03:12AM +0100, Tomasz Chmielewski wrote: > >> Gleb Natapov schrieb: >> >>> This fixes Vista boot from virtio-blk issue. >>> >> Did I miss Windows virtio block drivers? ;) >> >> > With this patch you'll get better experience with virtio block drivers > when they will be released! :) > > We're actively working on open source the net and block windows drivers. There is no due date but it is progressing nicely. > -- > Gleb. > -- > To unsubscribe from this list: send the line "unsubscribe kvm" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/extboot/extboot.S b/extboot/extboot.S index e3d1adf..1e60f68 100644 --- a/extboot/extboot.S +++ b/extboot/extboot.S @@ -32,6 +32,9 @@ _start: xor %ax, %ax mov %ax, %ds + /* there is one more bootable HD */ + incb 0x0475 + /* save old int 19 */ mov (0x19*4), %eax mov %eax, %cs:old_int19
This fixes Vista boot from virtio-blk issue. Signed-off-by: Gleb Natapov <gleb@redhat.com> -- Gleb. -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html