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

Toomas Soome tsoome at FreeBSD.org
Fri Aug 3 07:59:30 UTC 2018


Author: tsoome
Date: Fri Aug  3 07:59:29 2018
New Revision: 337231
URL: https://svnweb.freebsd.org/changeset/base/337231

Log:
  loader.efi: clean up misleading noise from missing block devices
  
  If there are no block devices, there is no need to printout
  error (ENOENT).
  
  In case of netboot, our image path has no block device, no need to make
  noise about it.

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

Modified: head/stand/efi/loader/main.c
==============================================================================
--- head/stand/efi/loader/main.c	Fri Aug  3 02:51:37 2018	(r337230)
+++ head/stand/efi/loader/main.c	Fri Aug  3 07:59:29 2018	(r337231)
@@ -545,8 +545,6 @@ find_currdev(EFI_LOADED_IMAGE *img, bool do_bootmgr, b
 					return (0);
 			}
 		}
-	} else {
-		printf("Can't find device by handle\n");
 	}
 
 	/*
@@ -862,9 +860,9 @@ main(int argc, CHAR16 *argv[])
 	 * march through the device switch probing for things.
 	 */
 	i = efipart_inithandles();
-	if (i != 0) {
+	if (i != 0 && i != ENOENT) {
 		printf("efipart_inithandles failed with ERRNO %d, expect "
-		    "failures", i);
+		    "failures\n", i);
 	}
 
 	for (i = 0; devsw[i] != NULL; i++)


More information about the svn-src-head mailing list