]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - stand/man/loader_simp.8
sound: Implement asynchronous device detach
[FreeBSD/FreeBSD.git] / stand / man / loader_simp.8
1 .\" Copyright (c) 1999 Daniel C. Sobral
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .Dd September 29, 2021
26 .Dt LOADER_SIMP 8
27 .Os
28 .Sh NAME
29 .Nm loader_simp
30 .Nd kernel bootstrapping final stage
31 .Sh DESCRIPTION
32 The program called
33 .Nm
34 is the final stage of
35 .Fx Ns 's
36 kernel bootstrapping process.
37 On IA32 (i386) architectures, it is a
38 .Pa BTX
39 client.
40 It is linked statically to
41 .Xr libsa 3
42 and usually located in the directory
43 .Pa /boot .
44 .Pp
45 It provides a scripting language that can be used to
46 automate tasks, do pre-configuration or assist in recovery
47 procedures.
48 This scripting language is roughly divided in
49 two main components.
50 The smaller one is a set of commands
51 designed for direct use by the casual user, called "builtin
52 commands" for historical reasons.
53 The main drive behind these commands is user-friendliness.
54 .Pp
55 During initialization,
56 .Nm
57 will probe for a console and set the
58 .Va console
59 variable, or set it to serial console
60 .Pq Dq Li comconsole
61 if the previous boot stage used that.
62 If multiple consoles are selected, they will be listed separated by spaces.
63 Then, devices are probed,
64 .Va currdev
65 and
66 .Va loaddev
67 are set, and
68 .Va LINES
69 is set to 24.
70 After that,
71 .Pa /boot/loader.rc
72 is processed if available.
73 These files are processed through the
74 .Ic include
75 command, which reads all of them into memory before processing them,
76 making disk changes possible.
77 .Pp
78 At this point, if an
79 .Ic autoboot
80 has not been tried, and if
81 .Va autoboot_delay
82 is not set to
83 .Dq Li NO
84 (not case sensitive), then an
85 .Ic autoboot
86 will be tried.
87 If the system gets past this point,
88 .Va prompt
89 will be set and
90 .Nm
91 will engage interactive mode.
92 Please note that historically even when
93 .Va autoboot_delay
94 is set to
95 .Dq Li 0
96 user will be able to interrupt autoboot process by pressing some key
97 on the console while kernel and modules are being loaded.
98 In some
99 cases such behaviour may be undesirable, to prevent it set
100 .Va autoboot_delay
101 to
102 .Dq Li -1 ,
103 in this case
104 .Nm
105 will engage interactive mode only if
106 .Ic autoboot
107 has failed.
108 .Sh BUILTIN COMMANDS
109 In
110 .Nm ,
111 builtin commands take parameters from the command line.
112 Presently,
113 the only way to call them from a script is by using
114 .Pa evaluate
115 on a string.
116 In the case of an error, an error message will be displayed and
117 the interpreter's state will be reset, emptying the stack and restoring
118 interpreting mode.
119 .Pp
120 The builtin commands available are:
121 .Pp
122 .Bl -tag -width Ds -compact
123 .It Ic autoboot Op Ar seconds Op Ar prompt
124 Proceeds to bootstrap the system after a number of seconds, if not
125 interrupted by the user.
126 Displays a countdown prompt
127 warning the user the system is about to be booted,
128 unless interrupted by a key press.
129 The kernel will be loaded first if necessary.
130 Defaults to 10 seconds.
131 .Pp
132 .It Ic bcachestat
133 Displays statistics about disk cache usage.
134 For debugging only.
135 .Pp
136 .It Ic boot
137 .It Ic boot Ar kernelname Op Cm ...
138 .It Ic boot Fl flag Cm ...
139 Immediately proceeds to bootstrap the system, loading the kernel
140 if necessary.
141 Any flags or arguments are passed to the kernel, but they
142 must precede the kernel name, if a kernel name is provided.
143 .Pp
144 .It Ic echo Xo
145 .Op Fl n
146 .Op Aq message
147 .Xc
148 Displays text on the screen.
149 A new line will be printed unless
150 .Fl n
151 is specified.
152 .Pp
153 .It Ic heap
154 Displays memory usage statistics.
155 For debugging purposes only.
156 .Pp
157 .It Ic help Op topic Op subtopic
158 Shows help messages read from
159 .Pa /boot/loader.help .
160 The special topic
161 .Em index
162 will list the topics available.
163 .Pp
164 .It Ic include Ar file Op Ar
165 Process script files.
166 Each file, in turn, is completely read into memory,
167 and then each of its lines is passed to the command line interpreter.
168 If any error is returned by the interpreter, the include
169 command aborts immediately, without reading any other files, and
170 returns an error itself (see
171 .Sx ERRORS ) .
172 .Pp
173 .It Ic load Xo
174 .Op Fl t Ar type
175 .Ar file Cm ...
176 .Xc
177 Loads a kernel, kernel loadable module (kld), disk image,
178 or file of opaque contents tagged as being of the type
179 .Ar type .
180 Kernel and modules can be either in a.out or ELF format.
181 Any arguments passed after the name of the file to be loaded
182 will be passed as arguments to that file.
183 Use the
184 .Li md_image
185 type to make the kernel create a file-backed
186 .Xr md 4
187 disk.
188 This is useful for booting from a temporary rootfs.
189 Currently, argument passing does not work for the kernel.
190 .Pp
191 .It Ic load_geli Xo
192 .Op Fl n Ar keyno
193 .Ar prov Ar file
194 .Xc
195 Loads a
196 .Xr geli 8
197 encryption keyfile for the given provider name.
198 The key index can be specified via
199 .Ar keyno
200 or will default to zero.
201 .Pp
202 .It Ic ls Xo
203 .Op Fl l
204 .Op Ar path
205 .Xc
206 Displays a listing of files in the directory
207 .Ar path ,
208 or the root directory if
209 .Ar path
210 is not specified.
211 If
212 .Fl l
213 is specified, file sizes will be shown too.
214 .Pp
215 .It Ic lsdev Op Fl v
216 Lists all of the devices from which it may be possible to load modules,
217 as well as ZFS pools.
218 If
219 .Fl v
220 is specified, more details are printed, including ZFS pool information
221 in a format that resembles
222 .Nm zpool Cm status
223 output.
224 .Pp
225 .It Ic lsmod Op Fl v
226 Displays loaded modules.
227 If
228 .Fl v
229 is specified, more details are shown.
230 .Pp
231 .It Ic lszfs Ar filesystem
232 A ZFS extended command that can be used to explore the ZFS filesystem
233 hierarchy in a pool.
234 Lists the immediate children of the
235 .Ar filesystem .
236 The filesystem hierarchy is rooted at a filesystem with the same name
237 as the pool.
238 .Pp
239 .It Ic more Ar file Op Ar
240 Display the files specified, with a pause at each
241 .Va LINES
242 displayed.
243 .Pp
244 .It Ic pnpscan Op Fl v
245 Scans for Plug-and-Play devices.
246 This is not functional at present.
247 .Pp
248 .It Ic read Xo
249 .Op Fl t Ar seconds
250 .Op Fl p Ar prompt
251 .Op Va variable
252 .Xc
253 Reads a line of input from the terminal, storing it in
254 .Va variable
255 if specified.
256 A timeout can be specified with
257 .Fl t ,
258 though it will be canceled at the first key pressed.
259 A prompt may also be displayed through the
260 .Fl p
261 flag.
262 .Pp
263 .It Ic reboot
264 Immediately reboots the system.
265 .Pp
266 .It Ic set Ar variable
267 .It Ic set Ar variable Ns = Ns Ar value
268 Set loader's environment variables.
269 .Pp
270 .It Ic show Op Va variable
271 Displays the specified variable's value, or all variables and their
272 values if
273 .Va variable
274 is not specified.
275 .Pp
276 .It Ic unload
277 Remove all modules from memory.
278 .Pp
279 .It Ic unset Va variable
280 Removes
281 .Va variable
282 from the environment.
283 .Pp
284 .It Ic \&?
285 Lists available commands.
286 .El
287 .Ss BUILTIN ENVIRONMENT VARIABLES
288 Environment variables can be set and unset through the
289 .Ic set
290 and
291 .Ic unset
292 builtins, and can have their values interactively examined through the
293 use of the
294 .Ic show
295 builtin.
296 Their values can also be accessed as described in
297 .Sx BUILTIN PARSER .
298 .Pp
299 Notice that these environment variables are not inherited by any shell
300 after the system has been booted.
301 .Pp
302 A few variables are set automatically by
303 .Nm .
304 Others can affect the behavior of either
305 .Nm
306 or the kernel at boot.
307 Some options may require a value,
308 while others define behavior just by being set.
309 Both types of builtin variables are described below.
310 .Bl -tag -width bootfile
311 .It Va autoboot_delay
312 Number of seconds
313 .Ic autoboot
314 will wait before booting.
315 Configuration options are described in
316 .Xr loader.conf 5 .
317 .It Va boot_askname
318 Instructs the kernel to prompt the user for the name of the root device
319 when the kernel is booted.
320 .It Va boot_cdrom
321 Instructs the kernel to try to mount the root file system from CD-ROM.
322 .It Va boot_ddb
323 Instructs the kernel to start in the DDB debugger, rather than
324 proceeding to initialize when booted.
325 .It Va boot_dfltroot
326 Instructs the kernel to mount the statically compiled-in root file system.
327 .It Va boot_gdb
328 Selects gdb-remote mode for the kernel debugger by default.
329 .It Va boot_multicons
330 Enables multiple console support in the kernel early on boot.
331 In a running system, console configuration can be manipulated
332 by the
333 .Xr conscontrol 8
334 utility.
335 .It Va boot_mute
336 All kernel console output is suppressed when console is muted.
337 In a running system, the state of console muting can be manipulated by the
338 .Xr conscontrol 8
339 utility.
340 .It Va boot_pause
341 During the device probe, pause after each line is printed.
342 .It Va boot_serial
343 Force the use of a serial console even when an internal console
344 is present.
345 .It Va boot_single
346 Prevents the kernel from initiating a multi-user startup; instead,
347 a single-user mode will be entered when the kernel has finished
348 device probing.
349 .It Va boot_verbose
350 Setting this variable causes extra debugging information to be printed
351 by the kernel during the boot phase.
352 .It Va bootfile
353 List of semicolon-separated search path for bootable kernels.
354 The default is
355 .Dq Li kernel .
356 .It Va comconsole_speed
357 Defines the speed of the serial console (i386 and amd64 only).
358 If the previous boot stage indicated that a serial console is in use
359 then this variable is initialized to the current speed of the console
360 serial port.
361 Otherwise it is set to 115200 unless this was overridden using the
362 .Va BOOT_COMCONSOLE_SPEED
363 variable when
364 .Nm
365 was compiled.
366 Changes to the
367 .Va comconsole_speed
368 variable take effect immediately.
369 .It Va comconsole_port
370 Defines the base i/o port used to access console UART
371 (i386 and amd64 only).
372 If the variable is not set, its assumed value is 0x3F8, which
373 corresponds to PC port COM1, unless overridden by
374 .Va BOOT_COMCONSOLE_PORT
375 variable during the compilation of
376 .Nm .
377 Setting the
378 .Va comconsole_port
379 variable automatically set
380 .Va hw.uart.console
381 environment variable to provide a hint to kernel for location of the console.
382 Loader console is changed immediately after variable
383 .Va comconsole_port
384 is set.
385 .It Va comconsole_pcidev
386 Defines the location of a PCI device of the 'simple communication'
387 class to be used as the serial console UART (i386 and amd64 only).
388 The syntax of the variable is
389 .Li 'bus:device:function[:bar]' ,
390 where all members must be numeric, with possible
391 .Li 0x
392 prefix to indicate a hexadecimal value.
393 The
394 .Va bar
395 member is optional and assumed to be 0x10 if omitted.
396 The bar must decode i/o space.
397 Setting the variable
398 .Va comconsole_pcidev
399 automatically sets the variable
400 .Va comconsole_port
401 to the base of the selected bar, and hint
402 .Va hw.uart.console .
403 Loader console is changed immediately after variable
404 .Va comconsole_pcidev
405 is set.
406 .It Va console
407 Defines the current console or consoles.
408 Multiple consoles may be specified.
409 In that case, the first listed console will become the default console for
410 userland output (e.g.\& from
411 .Xr init 8 ) .
412 .It Va currdev
413 Selects the default device to loader the kernel from.
414 The syntax is:
415 .Dl Ic loader_device:
416 or
417 .Dl Ic zfs:dataset:
418 Examples:
419 .Dl Ic disk0p2:
420 .Dl Ic zfs:zroot/ROOT/default:
421 .It Va dumpdev
422 Sets the device for kernel dumps.
423 This can be used to ensure that a device is configured before the corresponding
424 .Va dumpdev
425 directive from
426 .Xr rc.conf 5
427 has been processed, allowing kernel panics that happen during the early stages
428 of boot to be captured.
429 .It Va init_chroot
430 See
431 .Xr init 8 .
432 .It Va init_exec
433 See
434 .Xr init 8 .
435 .It Va init_path
436 Sets the list of binaries which the kernel will try to run as the initial
437 process.
438 The first matching binary is used.
439 The default list is
440 .Dq Li /sbin/init:/sbin/oinit:/sbin/init.bak:\:/rescue/init .
441 .It Va init_script
442 See
443 .Xr init 8 .
444 .It Va init_shell
445 See
446 .Xr init 8 .
447 .It Va interpret
448 Has the value
449 .Dq Li OK
450 if the Forth's current state is interpreting.
451 .It Va LINES
452 Define the number of lines on the screen, to be used by the pager.
453 .It Va module_path
454 Sets the list of directories which will be searched for modules
455 named in a load command or implicitly required by a dependency.
456 The default value for this variable is
457 .Dq Li /boot/kernel;/boot/modules .
458 .It Va num_ide_disks
459 Sets the number of IDE disks as a workaround for some problems in
460 finding the root disk at boot.
461 This has been deprecated in favor of
462 .Va root_disk_unit .
463 .It Va prompt
464 Value of
465 .Nm Ns 's
466 prompt.
467 Defaults to
468 .Dq Li "${interpret}" .
469 If variable
470 .Va prompt
471 is unset, the default prompt is
472 .Ql > .
473 .It Va root_disk_unit
474 If the code which detects the disk unit number for the root disk is
475 confused, e.g.\& by a mix of SCSI and IDE disks, or IDE disks with
476 gaps in the sequence (e.g.\& no primary slave), the unit number can
477 be forced by setting this variable.
478 .It Va rootdev
479 By default the value of
480 .Va currdev
481 is used to set the root file system
482 when the kernel is booted.
483 This can be overridden by setting
484 .Va rootdev
485 explicitly.
486 .El
487 .Pp
488 Other variables are used to override kernel tunable parameters.
489 The following tunables are available:
490 .Bl -tag -width Va
491 .It Va efi.rt.disabled
492 Disable UEFI runtime services in the kernel, if applicable.
493 Runtime services are only available and used if the kernel is booted in a UEFI
494 environment.
495 .It Va hw.physmem
496 Limit the amount of physical memory the system will use.
497 By default the size is in bytes, but the
498 .Cm k , K , m , M , g
499 and
500 .Cm G
501 suffixes
502 are also accepted and indicate kilobytes, megabytes and gigabytes
503 respectively.
504 An invalid suffix will result in the variable being ignored by the
505 kernel.
506 .It Va hw.pci.host_start_mem , hw.acpi.host_start_mem
507 When not otherwise constrained, this limits the memory start
508 address.
509 The default is 0x80000000 and should be set to at least size of the
510 memory and not conflict with other resources.
511 Typically, only systems without PCI bridges need to set this variable
512 since PCI bridges typically constrain the memory starting address
513 (and the variable is only used when bridges do not constrain this
514 address).
515 .It Va hw.pci.enable_io_modes
516 Enable PCI resources which are left off by some BIOSes or are not
517 enabled correctly by the device driver.
518 Tunable value set to ON (1) by default, but this may cause problems
519 with some peripherals.
520 .It Va kern.maxusers
521 Set the size of a number of statically allocated system tables; see
522 .Xr tuning 7
523 for a description of how to select an appropriate value for this
524 tunable.
525 When set, this tunable replaces the value declared in the kernel
526 compile-time configuration file.
527 .It Va kern.ipc.nmbclusters
528 Set the number of mbuf clusters to be allocated.
529 The value cannot be set below the default
530 determined when the kernel was compiled.
531 .It Va kern.ipc.nsfbufs
532 Set the number of
533 .Xr sendfile 2
534 buffers to be allocated.
535 Overrides
536 .Dv NSFBUFS .
537 Not all architectures use such buffers; see
538 .Xr sendfile 2
539 for details.
540 .It Va kern.maxswzone
541 Limits the amount of KVM to be used to hold swap
542 metadata, which directly governs the
543 maximum amount of swap the system can support,
544 at the rate of approximately 200 MB of swap space
545 per 1 MB of metadata.
546 This value is specified in bytes of KVA space.
547 If no value is provided, the system allocates
548 enough memory to handle an amount of swap
549 that corresponds to eight times the amount of
550 physical memory present in the system.
551 .Pp
552 Note that swap metadata can be fragmented,
553 which means that the system can run out of
554 space before it reaches the theoretical limit.
555 Therefore, care should be taken to not configure
556 more swap than approximately half of the
557 theoretical maximum.
558 .Pp
559 Running out of space for swap metadata can leave
560 the system in an unrecoverable state.
561 Therefore, you should only change
562 this parameter if you need to greatly extend the
563 KVM reservation for other resources such as the
564 buffer cache or
565 .Va kern.ipc.nmbclusters .
566 Modifies kernel option
567 .Dv VM_SWZONE_SIZE_MAX .
568 .It Va kern.maxbcache
569 Limits the amount of KVM reserved for use by the
570 buffer cache, specified in bytes.
571 The default maximum is 200MB on i386,
572 and 400MB on amd64.
573 This parameter is used to
574 prevent the buffer cache from eating too much
575 KVM in large-memory machine configurations.
576 Only mess around with this parameter if you need to
577 greatly extend the KVM reservation for other resources
578 such as the swap zone or
579 .Va kern.ipc.nmbclusters .
580 Note that
581 the NBUF parameter will override this limit.
582 Modifies
583 .Dv VM_BCACHE_SIZE_MAX .
584 .It Va kern.msgbufsize
585 Sets the size of the kernel message buffer.
586 The default limit of 96KB is usually sufficient unless
587 large amounts of trace data need to be collected
588 between opportunities to examine the buffer or
589 dump it to a file.
590 Overrides kernel option
591 .Dv MSGBUF_SIZE .
592 .It Va machdep.disable_mtrrs
593 Disable the use of i686 MTRRs (x86 only).
594 .It Va net.inet.tcp.tcbhashsize
595 Overrides the compile-time set value of
596 .Dv TCBHASHSIZE
597 or the preset default of 512.
598 Must be a power of 2.
599 .It Va twiddle_divisor
600 Throttles the output of the
601 .Sq twiddle
602 I/O progress indicator displayed while loading the kernel and modules.
603 This is useful on slow serial consoles where the time spent waiting for
604 these characters to be written can add up to many seconds.
605 The default is 16; a value of 32 spins half as fast,
606 while a value of 8 spins twice as fast.
607 .It Va vm.kmem_size
608 Sets the size of kernel memory (bytes).
609 This overrides the value determined when the kernel was compiled.
610 Modifies
611 .Dv VM_KMEM_SIZE .
612 .It Va vm.kmem_size_min
613 .It Va vm.kmem_size_max
614 Sets the minimum and maximum (respectively) amount of kernel memory
615 that will be automatically allocated by the kernel.
616 These override the values determined when the kernel was compiled.
617 Modifies
618 .Dv VM_KMEM_SIZE_MIN
619 and
620 .Dv VM_KMEM_SIZE_MAX .
621 .El
622 .Ss ZFS FEATURES
623 .Nm
624 supports the following format for specifying ZFS filesystems which
625 can be used wherever
626 .Xr loader 8
627 refers to a device specification:
628 .Pp
629 .Ar zfs:pool/filesystem:
630 .Pp
631 where
632 .Pa pool/filesystem
633 is a ZFS filesystem name as described in
634 .Xr zfs 8 .
635 .Pp
636 If
637 .Pa /etc/fstab
638 does not have an entry for the root filesystem and
639 .Va vfs.root.mountfrom
640 is not set, but
641 .Va currdev
642 refers to a ZFS filesystem, then
643 .Nm
644 will instruct kernel to use that filesystem as the root filesystem.
645 .Sh SECURITY
646 Access to the
647 .Nm
648 command line provides several ways of compromising system security,
649 including, but not limited to:
650 .Pp
651 .Bl -bullet
652 .It
653 Booting from removable storage.
654 .Pp
655 One can prevent unauthorized access
656 to the
657 .Nm
658 command line by booting unconditionally in
659 .Pa loader.rc .
660 In order for this to be effective, one should also configure the firmware
661 (BIOS or UEFI) to prevent booting from unauthorized devices.
662 .Sh FILES
663 .Bl -tag -width /boot/loader_simp -compact
664 .It Pa /boot/loader_simp
665 .Nm
666 itself.
667 .It Pa /boot/loader.rc
668 The script run by
669 .Nm
670 on startup.
671 .Sh EXAMPLES
672 Boot in single user mode:
673 .Pp
674 .Dl boot -s
675 .Pp
676 Load the kernel, a splash screen, and then autoboot in five seconds.
677 Notice that a kernel must be loaded before any other
678 .Ic load
679 command is attempted.
680 .Bd -literal -offset indent
681 load kernel
682 load splash_bmp
683 load -t splash_image_data /boot/chuckrulez.bmp
684 autoboot 5
685 .Ed
686 .Pp
687 Set the disk unit of the root device to 2, and then boot.
688 This would be needed in a system with two IDE disks,
689 with the second IDE disk hardwired to ada2 instead of ada1.
690 .Bd -literal -offset indent
691 set root_disk_unit=2
692 boot /boot/kernel/kernel
693 .Ed
694 .Pp
695 Set the default device used for loading a kernel from a ZFS filesystem:
696 .Bd -literal -offset indent
697 set currdev=zfs:tank/ROOT/knowngood:
698 .Ed
699 .Pp
700 .Sh ERRORS
701 The following values are thrown by
702 .Nm :
703 .Bl -tag -width XXXXX -offset indent
704 .It 100
705 Any type of error in the processing of a builtin.
706 .It -1
707 .Ic Abort
708 executed.
709 .It -2
710 .Ic Abort"
711 executed.
712 .It -56
713 .Ic Quit
714 executed.
715 .It -256
716 Out of interpreting text.
717 .It -257
718 Need more text to succeed -- will finish on next run.
719 .It -258
720 .Ic Bye
721 executed.
722 .It -259
723 Unspecified error.
724 .El
725 .Sh SEE ALSO
726 .Xr libsa 3 ,
727 .Xr loader.conf 5 ,
728 .Xr tuning 7 ,
729 .Xr boot 8 ,
730 .Xr btxld 8
731 .Sh HISTORY
732 The
733 .Nm
734 first appeared in
735 .Fx 3.1 .
736 .Sh AUTHORS
737 .An -nosplit
738 The
739 .Nm
740 was written by
741 .An Michael Smith Aq msmith@FreeBSD.org .