Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 22 Aug 2018 15:29:54 +0000 (UTC)
From:      Kurt Lidl <lidl@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r338203 - head/share/mk
Message-ID:  <201808221529.w7MFTseo033583@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: lidl
Date: Wed Aug 22 15:29:54 2018
New Revision: 338203
URL: https://svnweb.freebsd.org/changeset/base/338203

Log:
  Turn off LOADER_GELI and LOADER_LUA for sparc64, until those options
  are fully debugged.  With these options off, the unified "loader"
  binary for sparc64 works to boot a kernel from ZFS.
  
  Submitted by:	kevans
  Reviewed by:	imp kevans

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

Modified: head/share/mk/src.opts.mk
==============================================================================
--- head/share/mk/src.opts.mk	Wed Aug 22 14:58:52 2018	(r338202)
+++ head/share/mk/src.opts.mk	Wed Aug 22 15:29:54 2018	(r338203)
@@ -354,6 +354,11 @@ BROKEN_OPTIONS+=LOADER_OFW
 .if ${__T:Marm*} == "" && ${__T:Mmips*} == "" && ${__T:Mpowerpc*} == ""
 BROKEN_OPTIONS+=LOADER_UBOOT
 .endif
+# GELI and Lua in loader currently cause boot failures on sparc64.
+# Further debugging is required.
+.if ${__T} == "sparc64"
+BROKEN_OPTIONS+=LOADER_GELI LOADER_LUA
+.endif
 
 .if ${__T:Mmips64*}
 # profiling won't work on MIPS64 because there is only assembly for o32



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808221529.w7MFTseo033583>