From 30358c4848a494b6ebc1b85d67818cc701804125 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sat, 30 Jun 2007 11:15:17 -0400 Subject: [PATCH] Forgot to add our own drive to the drive count! --- memdisk/setup.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/memdisk/setup.c b/memdisk/setup.c index bad056c..553c446 100644 --- a/memdisk/setup.c +++ b/memdisk/setup.c @@ -766,6 +766,9 @@ void setup(syscall_t cs_syscall, void *cs_bounce) pptr->drivecnt = bios_drives; } + /* Add ourselves to the drive count */ + pptr->drivecnt++; + /* Discontiguous drive space. There is no really good solution for this. */ if ( pptr->drivecnt <= (geometry->driveno & 0x7f) ) pptr->drivecnt = (geometry->driveno & 0x7f) + 1; -- 2.7.4