svn commit: r338893 - head/share/mk

Andreas Tobler andreast at FreeBSD.org
Sat Sep 22 20:58:44 UTC 2018


Author: andreast
Date: Sat Sep 22 20:58:43 2018
New Revision: 338893
URL: https://svnweb.freebsd.org/changeset/base/338893

Log:
  Set the default loader for powerpc(32- and 64-bit) back to to forth.
  There are some issues with the lua-loader. To be on the safe side, use a well
  known and working loader.
  
  Approved by: re (glen)

Modified:
  head/share/mk/src.opts.mk

Modified: head/share/mk/src.opts.mk
==============================================================================
--- head/share/mk/src.opts.mk	Sat Sep 22 17:05:49 2018	(r338892)
+++ head/share/mk/src.opts.mk	Sat Sep 22 20:58:43 2018	(r338893)
@@ -358,6 +358,11 @@ BROKEN_OPTIONS+=LOADER_UBOOT
 .if ${__T} == "sparc64"
 BROKEN_OPTIONS+=LOADER_GELI LOADER_LUA
 .endif
+# Lua in loader currently cause boot failures on powerpc.
+# Further debugging is required.
+.if ${__T} == "powerpc"
+BROKEN_OPTIONS+=LOADER_LUA
+.endif
 
 .if ${__T:Mmips64*}
 # profiling won't work on MIPS64 because there is only assembly for o32


More information about the svn-src-all mailing list