svn commit: r325173 - in head/sys/boot/userboot: . ficl

Warner Losh imp at FreeBSD.org
Mon Oct 30 23:14:50 UTC 2017


Author: imp
Date: Mon Oct 30 23:14:48 2017
New Revision: 325173
URL: https://svnweb.freebsd.org/changeset/base/325173

Log:
  We don't need to build a special ficl for userboot.
  
  Prior to bringing efi into the system, amd64 systems were building
  32-bit ficl only, while userboot required the 64-bit one. However,
  with efi, we now build both. userboot can and should use the one we
  build for the main tree (in fact, it has been for a while, though I
  didn't check to see if that was an intentional change before, or an
  accidental one in my cleanup). Eliminate the extra copy (and build
  time) for userboot.
  
  Sponsored by: Netflix

Deleted:
  head/sys/boot/userboot/ficl/Makefile
  head/sys/boot/userboot/ficl/Makefile.depend
Modified:
  head/sys/boot/userboot/Makefile

Modified: head/sys/boot/userboot/Makefile
==============================================================================
--- head/sys/boot/userboot/Makefile	Mon Oct 30 23:14:44 2017	(r325172)
+++ head/sys/boot/userboot/Makefile	Mon Oct 30 23:14:48 2017	(r325173)
@@ -2,7 +2,7 @@
 
 .include <bsd.own.mk>
 
-SUBDIR=		ficl test zfs userboot
+SUBDIR=		test zfs userboot
 
 .include <bsd.subdir.mk>
 


More information about the svn-src-head mailing list