svn commit: r334421 - head/sys/arm64/arm64

Andrew Turner andrew at FreeBSD.org
Thu May 31 11:53:47 UTC 2018


Author: andrew
Date: Thu May 31 11:53:46 2018
New Revision: 334421
URL: https://svnweb.freebsd.org/changeset/base/334421

Log:
  Fix the early spelling of bootverbose.
  
  Sponsored by:	DARPA, AFRL

Modified:
  head/sys/arm64/arm64/machdep.c

Modified: head/sys/arm64/arm64/machdep.c
==============================================================================
--- head/sys/arm64/arm64/machdep.c	Thu May 31 11:11:23 2018	(r334420)
+++ head/sys/arm64/arm64/machdep.c	Thu May 31 11:53:46 2018	(r334421)
@@ -1075,7 +1075,7 @@ initarm(struct arm64_bootparams *abp)
 	if (env != NULL)
 		strlcpy(kernelname, env, sizeof(kernelname));
 
-	if (bootverbose)
+	if (boothowto & RB_VERBOSE)
 		arm_physmem_print_tables();
 
 	early_boot = 0;


More information about the svn-src-head mailing list