diff options
-rw-r--r-- | mdk-stage1/NEWS | 1 | ||||
-rw-r--r-- | mdk-stage1/tools.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/mdk-stage1/NEWS b/mdk-stage1/NEWS index c7f2a39c7..bb096d21a 100644 --- a/mdk-stage1/NEWS +++ b/mdk-stage1/NEWS @@ -1,4 +1,5 @@ - load ide-disk when detecting disks (ide is now modularized...) +- load ide-floppy when detecting floppies 1.9: - ide is now modularized diff --git a/mdk-stage1/tools.c b/mdk-stage1/tools.c index 4a3f0c067..828b23f69 100644 --- a/mdk-stage1/tools.c +++ b/mdk-stage1/tools.c @@ -311,6 +311,7 @@ char * floppy_device(void) { char ** names, ** models; int fd; + my_insmod("ide-floppy", ANY_DRIVER_TYPE, NULL, 0); my_insmod("floppy", ANY_DRIVER_TYPE, NULL, 0); fd = open("/dev/fd0", O_RDONLY|O_NONBLOCK); if (fd != -1) { |