ref: 6c15b79dbc34cd2dc6c5fa3ff3542534ad7e7e18
parent: 9673e8a83a255a36f4bba22bd7fff70978680c21
author: cinap_lenrek <cinap_lenrek@gmx.de>
date: Sat Feb 16 18:38:58 EST 2013
boot(8): manpage correction $objtype vs. $cputype (from /n/sources/patch/boot-cputype-objtype) boot(8) claims that boot will launch /$objtype/init; that is incorrect. It launches /$cputype/init (so says both boot.c and cpurc(8)). That's the more sensible choice. This patch fixes the man page to resolve the mismatch.
--- a/sys/man/8/boot
+++ b/sys/man/8/boot
@@ -157,7 +157,7 @@
.I Boot
completes by
.IR exec (2)'ing
-.B /$objtype/init
+.B /$cputype/init
.BR -t .
If the
.B -m
@@ -216,7 +216,7 @@
.I boot
behaves as on the terminal except for
.IR exec (2)'ing
-.B /$objtype/init
+.B /$cputype/init
.BR -c .
.SS Booting Methods
The methods available to any system depend on what was
--
⑨