From a2bbe4b81e58567ec8f9d80d42a496ce07d3893a Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Mon, 16 Jul 2007 21:20:50 +0000 Subject: load ide-floppy when detecting floppies --- mdk-stage1/NEWS | 1 + mdk-stage1/tools.c | 1 + 2 files changed, 2 insertions(+) (limited to 'mdk-stage1') 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) { -- cgit v1.2.1