loader: do not probe floppy devices for zfs

The subject is telling it all.
This commit is contained in:
Toomas Soome 2018-11-02 09:47:18 +00:00
parent 6f2d76643e
commit c50609fc32
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=340047

View File

@ -399,6 +399,8 @@ i386_zfs_probe(void)
for (unit = 0; unit < MAXBDDEV; unit++) {
if (bd_unit2bios(unit) == -1)
break;
if (bd_unit2bios(unit) < 0x80)
continue;
sprintf(devname, "disk%d:", unit);
zfs_probe_dev(devname, NULL);
}