svn commit: r349395 - head/stand/efi/loader

Rebecca Cran bcran at FreeBSD.org
Tue Jun 25 21:26:59 UTC 2019


Author: bcran
Date: Tue Jun 25 21:26:57 2019
New Revision: 349395
URL: https://svnweb.freebsd.org/changeset/base/349395

Log:
  Disconnect EFI HTTP support
  
  The EFI HTTP code has been causing boot failures for people, so disable it
  while a fix is being worked on.

Modified:
  head/stand/efi/loader/conf.c

Modified: head/stand/efi/loader/conf.c
==============================================================================
--- head/stand/efi/loader/conf.c	Tue Jun 25 21:21:34 2019	(r349394)
+++ head/stand/efi/loader/conf.c	Tue Jun 25 21:26:57 2019	(r349395)
@@ -39,7 +39,6 @@ struct devsw *devsw[] = {
 	&efipart_fddev,
 	&efipart_cddev,
 	&efipart_hddev,
-	&efihttp_dev, /* ordering with efinet_dev matters */
 	&efinet_dev,
 	&vdisk_dev,
 #ifdef EFI_ZFS_BOOT
@@ -55,7 +54,6 @@ struct fs_ops *file_system[] = {
 	&dosfs_fsops,
 	&ufs_fsops,
 	&cd9660_fsops,
-	&efihttp_fsops,
 	&tftp_fsops,
 	&nfs_fsops,
 	&gzipfs_fsops,


More information about the svn-src-head mailing list