diff options
author | Andrew Turner <andrew@FreeBSD.org> | 2018-05-31 11:53:46 +0000 |
---|---|---|
committer | Andrew Turner <andrew@FreeBSD.org> | 2018-05-31 11:53:46 +0000 |
commit | ede605609ae48e0046c556b49e6382a9a83bac00 (patch) | |
tree | 6ec521480f7f0e193dd9e6dfbc42033063a98822 /sys/arm64 | |
parent | 5428bb231f18ff651cc5d325640f0a7e495f143e (diff) | |
download | src-ede605609ae48e0046c556b49e6382a9a83bac00.tar.gz src-ede605609ae48e0046c556b49e6382a9a83bac00.zip |
Fix the early spelling of bootverbose.
Sponsored by: DARPA, AFRL
Notes
Notes:
svn path=/head/; revision=334421
Diffstat (limited to 'sys/arm64')
-rw-r--r-- | sys/arm64/arm64/machdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm64/arm64/machdep.c b/sys/arm64/arm64/machdep.c index d356c49d17a1..b42ba2d36f16 100644 --- a/sys/arm64/arm64/machdep.c +++ b/sys/arm64/arm64/machdep.c @@ -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; |