summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/stage1.c
diff options
context:
space:
mode:
authorGuillaume Cottenceau <gc@mandriva.com>2004-02-10 17:05:57 +0000
committerGuillaume Cottenceau <gc@mandriva.com>2004-02-10 17:05:57 +0000
commitd76c8f91dddc6a0827a281e1501ef515f49ebfcd (patch)
tree54500dde431d66df7e3a970fef3ae0958ca1c8d0 /mdk-stage1/stage1.c
parent09fb7bb3267367ad9e0742ff41ff7981dd21fbf0 (diff)
downloaddrakx-d76c8f91dddc6a0827a281e1501ef515f49ebfcd.tar
drakx-d76c8f91dddc6a0827a281e1501ef515f49ebfcd.tar.gz
drakx-d76c8f91dddc6a0827a281e1501ef515f49ebfcd.tar.bz2
drakx-d76c8f91dddc6a0827a281e1501ef515f49ebfcd.tar.xz
drakx-d76c8f91dddc6a0827a281e1501ef515f49ebfcd.zip
use floppy_device rather than /dev/fd0 because we now support usb floppies as well
Diffstat (limited to 'mdk-stage1/stage1.c')
-rw-r--r--mdk-stage1/stage1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mdk-stage1/stage1.c b/mdk-stage1/stage1.c
index 2e1cb0972..c5452ce90 100644
--- a/mdk-stage1/stage1.c
+++ b/mdk-stage1/stage1.c
@@ -232,7 +232,7 @@ static void expert_third_party_modules(void)
my_insmod("floppy", ANY_DRIVER_TYPE, NULL, 0);
- if (my_mount("/dev/fd0", floppy_mount_location, "ext2", 0) == -1) {
+ if (my_mount(floppy_device(), floppy_mount_location, "ext2", 0) == -1) {
stg1_error_message("I can't find a Linux ext2 floppy in first floppy drive.");
return expert_third_party_modules();
}