Hello,
I tried to load driver disk image on a partition in USB storage device.
(/dev/sda1:dd.img) But It failed.
Steps to Reproduce:
1. create driver disk image (dd.img)
2. put dd.img on USB storage device partition (/dev/sda1)
3. start FC4 installer with "linux dd"
4. select driver disk source as /dev/sda1 and choose the file "dd.img"
Actual results:
anaconda went wrong stage.
anaconda displays:
---| Insert Driver Disk |---
Insert your driver disk into /dev/sda and press "OK" to continue.
Expected results:
Successfully load from driver disk image.
I think below patch fixes this problem. but it is untested.
--- anaconda-10.3.0.7/loader2/driverdisk.c.orig 2005-07-27 18:25:13.000000000 +0900
+++ anaconda-10.3.0.7/loader2/driverdisk.c 2005-07-27 18:25:56.000000000 +0900
@@ -380,6 +380,7 @@ int loadDriverFromMedia(int class, modul
break;
}
stage = DEV_LOAD;
+ break;
}
case DEV_INSERT: {