https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=223969
--- Comment #6 from Toomas Soome <tso...@freebsd.org> --- Could you test this update: Index: stand/efi/libefi/efipart.c =================================================================== --- stand/efi/libefi/efipart.c (revision 326368) +++ stand/efi/libefi/efipart.c (working copy) @@ -257,6 +257,15 @@ !blkio->Media->MediaPresent) { return (false); } + + /* + * iPXE stub Block IO protocol. Test for "iPXE" in MediaID + * and BlockSize. + */ + if (blkio->Media->MediaId == 0x69505845U && + blkio->Media->BlockSize == 1) { + return (false); + } } return (true); } -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ freebsd-bugs@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"