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

Simon J. Gerraty sjg at FreeBSD.org
Thu Oct 24 19:52:42 UTC 2019


Author: sjg
Date: Thu Oct 24 19:52:41 2019
New Revision: 354039
URL: https://svnweb.freebsd.org/changeset/base/354039

Log:
  Allow loader.efi to identify non-standard boot setup
  
  PATH_BOOTABLE_TOKEN can be set to a non-standard
  path that identifies a device as bootable.
  
  Reviewed by: kevans, bcran
  Differential Revision:  https://reviews.freebsd.org/D22062

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

Modified: head/stand/efi/loader/main.c
==============================================================================
--- head/stand/efi/loader/main.c	Thu Oct 24 19:50:18 2019	(r354038)
+++ head/stand/efi/loader/main.c	Thu Oct 24 19:52:41 2019	(r354039)
@@ -863,6 +863,7 @@ main(int argc, CHAR16 *argv[])
 	archsw.arch_getdev = efi_getdev;
 	archsw.arch_copyin = efi_copyin;
 	archsw.arch_copyout = efi_copyout;
+	archsw.arch_hypervisor = x86_hypervisor;
 	archsw.arch_readin = efi_readin;
 	archsw.arch_zfs_probe = efi_zfs_probe;
 


More information about the svn-src-head mailing list