diff options
-rw-r--r-- | stand/i386/loader/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stand/i386/loader/main.c b/stand/i386/loader/main.c index bb5b012079e0..fd6507da9b6a 100644 --- a/stand/i386/loader/main.c +++ b/stand/i386/loader/main.c @@ -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); } |