ref: 0ef41a6718395bc965914968079803552ebc8c40
parent: 126d7e6feb31c0e89943674238929c2748341556
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
--
⑨