921424f5c4338714da48943435eb5fcf29fac731
[dragonfly.git] / sys / boot / common / loader.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 .\" $FreeBSD: src/sys/boot/common/loader.8,v 1.57 2003/06/29 20:57:55 brueffer Exp $
26 .\" $DragonFly: src/sys/boot/common/loader.8,v 1.19 2008/07/11 23:42:46 thomas Exp $
27 .\"
28 .\" Note: The date here should be updated whenever a non-trivial
29 .\" change is made to the manual page.
30 .Dd May 11, 2006
31 .Dt LOADER 8
32 .Os
33 .Sh NAME
34 .Nm loader
35 .Nd kernel bootstrapping final stage
36 .Sh DESCRIPTION
37 The program called
38 .Nm
39 is the final stage of
40 .Dx Ns 's
41 kernel bootstrapping process.
42 On IA32 (i386) architectures, it is a
43 .Pa BTX
44 client.
45 It is linked statically to
46 .Xr libstand 3
47 and usually located in the directory
48 .Pa /boot .
49 .Pp
50 It provides a scripting language that can be used to
51 automate tasks, do pre-configuration or assist in recovery
52 procedures.
53 This scripting language is roughly divided in
54 two main components.
55 The smaller one is a set of commands
56 designed for direct use by the casual user, called "builtin
57 commands" for historical reasons.
58 The main drive behind these commands is user-friendliness.
59 The bigger component is an
60 .Tn ANS
61 Forth compatible Forth interpreter based on FICL, by
62 .An John Sadler .
63 .Pp
64 During initialization,
65 .Nm
66 will probe for a console and set the
67 .Va console
68 variable, or set it to serial console
69 .Pq Dq comconsole
70 if the previous boot stage used that.
71 Then, devices are probed,
72 .Va currdev
73 and
74 .Va loaddev
75 are set, and
76 .Va LINES
77 is set to 24.
78 Next,
79 .Tn FICL
80 is initialized, the builtin words are added to its vocabulary, and
81 .Pa /boot/boot.4th
82 is processed if it exists.
83 No disk switching is possible while that file is being read.
84 The inner interpreter
85 .Nm
86 will use with
87 .Tn FICL
88 is then set to
89 .Ic interpret ,
90 which is
91 .Tn FICL Ns 's
92 default.
93 After that,
94 .Pa /boot/loader.rc
95 is processed if available, and, failing that,
96 .Pa /boot/boot.conf
97 is read for historical reasons.
98 These files are processed through the
99 .Ic include
100 command, which reads all of them into memory before processing them,
101 making disk changes possible.
102 .Pp
103 At this point, if an
104 .Ic autoboot
105 has not been tried, and if
106 .Va autoboot_delay
107 is not set to
108 .Dq NO
109 (not case sensitive), then an
110 .Ic autoboot
111 will be tried.
112 If the system gets past this point,
113 .Va prompt
114 will be set and
115 .Nm
116 will engage interactive mode.
117 .Sh BUILTIN COMMANDS
118 In
119 .Nm ,
120 builtin commands take parameters from the command line.
121 Presently,
122 the only way to call them from a script is by using
123 .Pa evaluate
124 on a string.
125 If an error condition occurs, an exception will be generated,
126 which can be intercepted using
127 .Tn ANS
128 Forth exception handling
129 words.
130 If not intercepted, an error message will be displayed and
131 the interpreter's state will be reset, emptying the stack and restoring
132 interpreting mode.
133 .Pp
134 The builtin commands available are:
135 .Pp
136 .Bl -tag -width Ds -compact
137 .It Ic autoboot Op Ar seconds
138 Proceeds to bootstrap the system after a number of seconds, if not
139 interrupted by the user.
140 Displays a countdown prompt
141 warning the user the system is about to be booted,
142 unless interrupted by a key press.
143 The kernel will be loaded first if necessary.
144 Defaults to 10 seconds.
145 .Pp
146 .It Ic bcachestat
147 Displays statistics about disk cache usage.
148 For depuration only.
149 .Pp
150 .It Ic boot
151 .It Ic boot Ar kernelname Op Cm ...
152 .It Ic boot Fl flag Cm ...
153 Immediately proceeds to bootstrap the system, loading the kernel
154 if necessary.
155 Any flags or arguments are passed to the kernel, but they
156 must precede the kernel name, if a kernel name is provided.
157 Flags are described in
158 .Xr boot 8 .
159 .Pp
160 .Em WARNING :
161 The behavior of this builtin is changed if
162 .Xr loader.4th 8
163 is loaded.
164 .Pp
165 .It Ic echo Xo
166 .Op Fl n
167 .Op Aq message
168 .Xc
169 Displays text on the screen.
170 A new line will be printed unless
171 .Fl n
172 is specified.
173 .Pp
174 .It Ic heap
175 Displays memory usage statistics.
176 For debugging purposes only.
177 .Pp
178 .It Ic help Op topic Op subtopic
179 Shows help messages read from
180 .Pa /boot/loader.help .
181 The special topic
182 .Em index
183 will list the topics available.
184 .Pp
185 .It Ic include Ar file Op Ar
186 Process script files.
187 Each file, in turn, is completely read into memory,
188 and then each of its lines is passed to the command line interpreter.
189 If any error is returned by the interpreter, the include
190 command aborts immediately, without reading any other files, and
191 returns an error itself (see
192 .Sx ERRORS ) .
193 .Pp
194 .It Ic load Xo
195 .Op Fl t Ar type
196 .Ar file Cm ...
197 .Xc
198 Loads a kernel, kernel loadable module (kld), or file of opaque
199 contents tagged as being of the type
200 .Ar type .
201 Kernel and modules can be either in a.out or ELF format.
202 Any arguments passed after the name of the file to be loaded
203 will be passed as arguments to that file.
204 Currently, argument passing does not work for the kernel.
205 .Pp
206 .It Ic ls Xo
207 .Op Fl l
208 .Op Ar path
209 .Xc
210 Displays a listing of files in the directory
211 .Ar path ,
212 or the root directory if
213 .Ar path
214 is not specified.
215 If
216 .Fl l
217 is specified, file sizes will be shown too.
218 .Pp
219 .It Ic lsdev Op Fl v
220 Lists all of the devices from which it may be possible to load modules.
221 If
222 .Fl v
223 is specified, more details are printed.
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 more Ar file Op Ar
232 Display the files specified, with a pause at each
233 .Va LINES
234 displayed.
235 .Pp
236 .It Ic pnpscan Op Fl v
237 Scans for Plug-and-Play devices.
238 This is not functional at present.
239 .Pp
240 .It Ic read Xo
241 .Op Fl t Ar seconds
242 .Op Fl p Ar prompt
243 .Op Va variable
244 .Xc
245 Reads a line of input from the terminal, storing it in
246 .Va variable
247 if specified.
248 A timeout can be specified with
249 .Fl t ,
250 though it will be canceled at the first key pressed.
251 A prompt may also be displayed through the
252 .Fl p
253 flag.
254 .Pp
255 .It Ic reboot
256 Immediately reboots the system.
257 .Pp
258 .It Ic set Ar variable
259 .It Ic set Ar variable Ns = Ns Ar value
260 Set loader's environment variables.
261 .Pp
262 .It Ic show Op Va variable
263 Displays the specified variable's value, or all variables and their
264 values if
265 .Va variable
266 is not specified.
267 .Pp
268 .It Ic unload
269 Remove all modules from memory.
270 .Pp
271 .It Ic unset Va variable
272 Removes
273 .Va variable
274 from the environment.
275 .Pp
276 .It Ic \&?
277 Same as
278 .Dq help index .
279 .El
280 .Ss BUILTIN ENVIRONMENT VARIABLES
281 The
282 .Nm
283 has actually two different kinds of
284 .Sq environment
285 variables.
286 There are ANS Forth's
287 .Em environmental queries ,
288 and a separate space of environment variables used by builtins, which
289 are not directly available to Forth words.
290 It is the latter type that this section covers.
291 .Pp
292 Environment variables can be set and unset through the
293 .Ic set
294 and
295 .Ic unset
296 builtins, and can have their values interactively examined through the
297 use of the
298 .Ic show
299 builtin.
300 Their values can also be accessed as described in
301 .Sx BUILTIN PARSER .
302 .Pp
303 Notice that these environment variables are not inherited by any shell
304 after the system has been booted.
305 .Pp
306 A few variables are set automatically by
307 .Nm .
308 Others can affect the behavior of either
309 .Nm
310 or the kernel at boot.
311 Some options may require a value,
312 while others define behavior just by being set.
313 Both types of builtin variables are described below.
314 .Bl -tag -width bootfile
315 .It Va acpi_load
316 Unset this to disable automatic loading of the ACPI module.
317 .It Va autoboot_delay
318 Number of seconds
319 .Ic autoboot
320 will wait before booting.
321 If this variable is not defined,
322 .Ic autoboot
323 will default to 10 seconds.
324 .Pp
325 If set to
326 .Dq NO ,
327 no
328 .Ic autoboot
329 will be automatically attempted after processing
330 .Pa /boot/loader.rc ,
331 though explicit
332 .Ic autoboot Ns 's
333 will be processed normally, defaulting to 10 seconds delay.
334 .It Va boot_askname
335 Instructs the kernel to prompt the user for the name of the root device
336 when the kernel is booted.
337 .It Va boot_ddb
338 Instructs the kernel to start in the DDB debugger, rather than
339 proceeding to initialize when booted.
340 .It Va boot_gdb
341 Selects gdb-remote mode for the kernel debugger by default.
342 .It Va boot_single
343 Prevents the kernel from initiating a multi-user startup; instead single-user
344 mode will be entered when the kernel has finished device probing.
345 .It Va boot_userconfig
346 Requests that the kernel's interactive device configuration program
347 be run when the kernel is booted.
348 .It Va boot_verbose
349 Setting this variable causes extra debugging information to be printed
350 by the kernel during the boot phase.
351 .It Va bootfile
352 List of semicolon-separated search path for bootable kernels.
353 The default is
354 .Dq Li kernel;kernel.old .
355 .It Va console
356 Defines the current console.
357 .It Va currdev
358 Selects the default device.
359 Syntax for devices is odd.
360 .It Va init_path
361 Sets the list of binaries which the kernel will try to run as the initial
362 process.
363 The first matching binary is used.
364 The default list is
365 .Dq Li /sbin/init:/sbin/oinit:/sbin/init.bak .
366 .It Va interpret
367 Has the value
368 .Dq Li OK
369 if the Forth's current state is interpreting.
370 .It Va LINES
371 Define the number of lines on the screen, to be used by the pager.
372 .It Va module_path
373 Sets the list of directories which will be searched for modules
374 named in a load command or implicitly required by a dependency.
375 The default value for this variable is
376 .Dq Li /;/boot;/modules .
377 .It Va num_ide_disks
378 Sets the number of IDE disks as a workaround for some problems in
379 finding the root disk at boot.
380 This has been deprecated in favor of
381 .Va root_disk_unit .
382 .It Va prompt
383 Value of
384 .Nm Ns 's
385 prompt.
386 Defaults to
387 .Dq Li "\e${interpret}" .
388 .It Va root_disk_unit
389 If the code which detects the disk unit number for the root disk is
390 confused, e.g. by a mix of SCSI and IDE disks, or IDE disks with
391 gaps in the sequence (e.g. no primary slave), the unit number can
392 be forced by setting this variable.
393 .It Va rootdev
394 By default the value of
395 .Va currdev
396 is used to set the root file system
397 when the kernel is booted.
398 This can be overridden by setting
399 .Va rootdev
400 explicitly.
401 .It Va dumpdev
402 The name of a device where the kernel can save a crash dump in case
403 of a panic.
404 This automatically sets the
405 .Va kern.dumpdev
406 .Xr sysctl 3
407 MIB variable.
408 .El
409 .Pp
410 Other variables are used to override kernel tunable parameters.
411 The following
412 .Nm
413 tunables are available:
414 .Bl -tag -width Va
415 .It Va hw.physmem
416 Limit the amount of physical memory the system will use.
417 By default the size is in bytes, but the
418 .Cm k , K , m , M , g
419 and
420 .Cm G
421 suffixes
422 are also accepted and indicate kilobytes, megabytes and gigabytes
423 respectively.
424 An invalid suffix will result in the variable being ignored by the
425 kernel.
426 .It Va kern.emergency_intr_enable
427 Setting this to 1 enables emergency interrupt polling.  All interrupt
428 handlers are executed periodically.  This mode is very expensive and should
429 only be used to get a system accessible when interrupt routing is
430 otherwise broken.  It is primarily used by kernel developers to debug new
431 systems.
432 .It Va kern.emergency_intr_freq
433 Set the polling rate for the emergency interrupt polling code.  The
434 default is 10 (hz) to dissuade casual use.  If you are doing real work
435 with emergency interrupt polling mode enabled, it is recommended
436 that you use a frequency between 100hz and 300hz.
437 .It Va kern.maxusers
438 Set the size of a number of statically allocated system tables; see
439 .Xr tuning 7
440 for a description of how to select an appropriate value for this
441 tunable.
442 When set, this tunable replaces the value declared in the kernel
443 compile-time configuration file.
444 .It Va kern.ipc.nmbclusters
445 Set the number of mbuf clusters to be allocated.
446 The value cannot be set below the default
447 determined when the kernel was compiled.
448 Modifies
449 .Va NMBCLUSTERS .
450 .It Va kern.ipc.nsfbufs
451 Set the number of
452 .Xr sendfile 2
453 buffers to be allocated.
454 Overrides
455 .Dv NSFBUFS .
456 .It Va kern.mmxopt
457 Toggles the mmx optimizations for the bcopy/copyin/copyout routines
458 .It Va kern.vm.kmem.size
459 Sets the size of kernel memory (bytes).
460 This overrides the value determined when the kernel was compiled.
461 .It Va kern.maxswzone
462 Limits the amount of KVM to be used to hold swap
463 meta information, which directly governs the
464 maximum amount of swap the system can support.
465 This value is specified in bytes of KVA space
466 and defaults to around 70MBytes.
467 Care should be taken
468 to not reduce this value such that the actual
469 amount of configured swap exceeds \(12 the
470 kernel-supported swap.
471 The default 70MB allows
472 the kernel to support a maximum of (approximately)
473 14GB of configured swap.
474 Only mess around with
475 this parameter if you need to greatly extend the
476 KVM reservation for other resources such as the
477 buffer cache or
478 .Va NMBCLUSTERS .
479 Modifies
480 .Va VM_SWZONE_SIZE_MAX .
481 .It Va kern.maxbcache
482 Limits the amount of KVM reserved for use by the
483 buffer cache, specified in bytes.
484 The default maximum is 200MB.
485 This parameter is used to
486 prevent the buffer cache from eating too much
487 KVM in large-memory machine configurations.
488 Only mess around with this parameter if you need to
489 greatly extend the KVM reservation for other resources
490 such as the swap zone or
491 .Va NMBCLUSTERS .
492 Note that
493 the NBUF parameter will override this limit.
494 Modifies
495 .Va VM_BCACHE_SIZE_MAX .
496 .It Va machdep.disable_mtrrs
497 Disable the use of i686 MTRRs (x86 only).
498 .It Va net.inet.tcp.tcbhashsize
499 Overrides the compile-time set value of
500 .Va TCBHASHSIZE
501 or the preset default of 512.
502 Must be a power of 2.
503 .El
504 .Ss BUILTIN PARSER
505 When a builtin command is executed, the rest of the line is taken
506 by it as arguments, and it is processed by a special parser which
507 is not used for regular Forth commands.
508 .Pp
509 This special parser applies the following rules to the parsed text:
510 .Bl -enum
511 .It
512 All backslash characters are preprocessed.
513 .Bl -bullet
514 .It
515 \eb , \ef , \er , \en and \et are processed as in C.
516 .It
517 \es is converted to a space.
518 .It
519 \ev is converted to
520 .Tn ASCII
521 11.
522 .It
523 \ez is just skipped.
524 Useful for things like
525 .Dq \e0xf\ez\e0xf .
526 .It
527 \e0xN and \e0xNN are replaced by the hex N or NN.
528 .It
529 \eNNN is replaced by the octal NNN
530 .Tn ASCII
531 character.
532 .It
533 \e" , \e' and \e$ will escape these characters, preventing them from
534 receiving special treatment in Step 2, described below.
535 .It
536 \e\e will be replaced with a single \e .
537 .It
538 In any other occurrence, backslash will just be removed.
539 .El
540 .It
541 Every string between non-escaped quotes or double-quotes will be treated
542 as a single word for the purposes of the remaining steps.
543 .It
544 Replace any
545 .Li $VARIABLE
546 or
547 .Li ${VARIABLE}
548 with the value of the environment variable
549 .Va VARIABLE .
550 .It
551 Space-delimited arguments are passed to the called builtin command.
552 Spaces can also be escaped through the use of \e\e .
553 .El
554 .Pp
555 An exception to this parsing rule exists, and is described in
556 .Sx BUILTINS AND FORTH .
557 .Ss BUILTINS AND FORTH
558 All builtin words are state-smart, immediate words.
559 If interpreted, they behave exactly as described previously.
560 If they are compiled, though,
561 they extract their arguments from the stack instead of the command line.
562 .Pp
563 If compiled, the builtin words expect to find, at execution time, the
564 following parameters on the stack:
565 .D1 Ar addrN lenN ... addr2 len2 addr1 len1 N
566 where
567 .Ar addrX lenX
568 are strings which will compose the command line that will be parsed
569 into the builtin's arguments.
570 Internally, these strings are concatenated in from 1 to N,
571 with a space put between each one.
572 .Pp
573 If no arguments are passed, a 0
574 .Em must
575 be passed, even if the builtin accepts no arguments.
576 .Pp
577 While this behavior has benefits, it has its trade-offs.
578 If the execution token of a builtin is acquired (through
579 .Ic '
580 or
581 .Ic ['] ) ,
582 and then passed to
583 .Ic catch
584 or
585 .Ic execute ,
586 the builtin behavior will depend on the system state
587 .Bf Em
588 at the time
589 .Ic catch
590 or
591 .Ic execute
592 is processed
593 .Ef
594 \&! This is particularly annoying for programs that want or need to
595 handle exceptions.
596 In this case, the use of a proxy is recommended.
597 For example:
598 .Dl : (boot) boot \&;
599 .Sh FICL
600 .Tn FICL
601 is a Forth interpreter written in C, in the form of a forth
602 virtual machine library that can be called by C functions and vice
603 versa.
604 .Pp
605 In
606 .Nm ,
607 each line read interactively is then fed to
608 .Tn FICL ,
609 which may call
610 .Nm
611 back to execute the builtin words.
612 The builtin
613 .Ic include
614 will also feed
615 .Tn FICL ,
616 one line at a time.
617 .Pp
618 The words available to
619 .Tn FICL
620 can be classified into four groups.
621 The
622 .Tn ANS
623 Forth standard words, extra
624 .Tn FICL
625 words, extra
626 .Dx
627 words, and the builtin commands;
628 the latter were already described.
629 The
630 .Tn ANS
631 Forth standard words are listed in the
632 .Sx STANDARDS
633 section.
634 The words falling in the two other groups are described in the
635 following subsections.
636 .Ss FICL EXTRA WORDS
637 .Bl -tag -width wid-set-super
638 .It Ic .env
639 .It Ic .ver
640 .It Ic -roll
641 .It Ic 2constant
642 .It Ic >name
643 .It Ic body>
644 .It Ic compare
645 This is the STRING word set's
646 .Ic compare .
647 .It Ic compile-only
648 .It Ic endif
649 .It Ic forget-wid
650 .It Ic parse-word
651 .It Ic sliteral
652 This is the STRING word set's
653 .Ic sliteral .
654 .It Ic wid-set-super
655 .It Ic w@
656 .It Ic w!
657 .It Ic x.
658 .It Ic empty
659 .It Ic cell-
660 .It Ic -rot
661 .El
662 .Ss DRAGONFLY EXTRA WORDS
663 .Bl -tag -width XXXXXXXX
664 .It Ic \&$ Pq --
665 Evaluates the remainder of the input buffer, after having printed it first.
666 .It Ic \&% Pq --
667 Evaluates the remainder of the input buffer under a
668 .Ic catch
669 exception guard.
670 .It Ic .#
671 Works like
672 .Ic .
673 but without outputting a trailing space.
674 .It Ic fclose Pq Ar fd --
675 Closes a file.
676 .It Ic fkey Pq Ar fd -- char
677 Reads a single character from a file.
678 .It Ic fload Pq Ar fd --
679 Processes a file
680 .Em fd .
681 .It Ic fopen Pq Ar addr len mode Li -- Ar fd
682 Opens a file.
683 Returns a file descriptor, or \-1 in case of failure.
684 The
685 .Ar mode
686 parameter selects whether the file is to be opened for read access, write
687 access, or both.
688 The constants
689 .Dv O_RDONLY , O_WRONLY ,
690 and
691 .Dv O_RDWR
692 are defined in
693 .Pa /boot/support.4th ,
694 indicating read only, write only, and read-write access, respectively.
695 .It Xo
696 .Ic fread
697 .Pq Ar fd addr len -- len'
698 .Xc
699 Tries to read
700 .Em len
701 bytes from file
702 .Em fd
703 into buffer
704 .Em addr .
705 Returns the actual number of bytes read, or -1 in case of error or end of
706 file.
707 .It Ic heap? Pq -- Ar cells
708 Return the space remaining in the dictionary heap, in cells.
709 This is not related to the heap used by dynamic memory allocation words.
710 .It Ic inb Pq Ar port -- char
711 Reads a byte from a port.
712 .It Ic key Pq -- Ar char
713 Reads a single character from the console.
714 .It Ic key? Pq -- Ar flag
715 Returns
716 .Ic true
717 if there is a character available to be read from the console.
718 .It Ic ms Pq Ar u --
719 Waits
720 .Em u
721 microseconds.
722 .It Ic outb Pq Ar port char --
723 Writes a byte to a port.
724 .It Ic seconds Pq -- Ar u
725 Returns the number of seconds since midnight.
726 .It Ic tib> Pq -- Ar addr len
727 Returns the remainder of the input buffer as a string on the stack.
728 .It Ic trace! Pq Ar flag --
729 Activates or deactivates tracing.
730 Does not work with
731 .Ic catch .
732 .El
733 .Ss DRAGONFLY DEFINED ENVIRONMENTAL QUERIES
734 .Bl -tag -width Ds
735 .It arch-i386
736 .Ic TRUE
737 if the architecture is IA32.
738 .It DragonFly_version
739 .Dx
740 version at compile time.
741 .It loader_version
742 .Nm
743 version.
744 .El
745 .Ss SYSTEM DOCUMENTATION
746 .Sh FILES
747 .Bl -tag -width /boot/defaults/loader.conf -compact
748 .It Pa /boot/loader
749 .Nm
750 itself.
751 .It Pa /boot/boot.4th
752 Additional
753 .Tn FICL
754 initialization.
755 .It Pa /boot/boot.conf
756 .Nm
757 bootstrapping script.
758 Deprecated.
759 .It Pa /boot/defaults/loader.conf
760 .It Pa /boot/loader.conf
761 .It Pa /boot/loader.conf.local
762 .Nm
763 configuration files, as described in
764 .Xr loader.conf 5 .
765 .It Pa /boot/loader.rc
766 .Nm
767 bootstrapping script.
768 .It Pa /boot/loader.help
769 Loaded by
770 .Ic help .
771 Contains the help messages.
772 .El
773 .Sh EXAMPLES
774 Boot in single user mode:
775 .Pp
776 .Dl boot -s
777 .Pp
778 Load kernel's user configuration file.
779 Notice that a kernel must be loaded before any other
780 .Ic load
781 command is attempted.
782 .Bd -literal -offset indent
783 load kernel
784 load -t userconfig_script /boot/kernel.conf
785 .Ed
786 .Pp
787 Load the kernel, a splash screen, and then autoboot in five seconds.
788 .Bd -literal -offset indent
789 load kernel
790 load splash_bmp
791 load -t splash_image_data /boot/chuckrulez.bmp
792 autoboot 5
793 .Ed
794 .Pp
795 Set the disk unit of the root device to 2, and then boot.
796 This would be needed in a system with two IDE disks,
797 with the second IDE disk hardwired to wd2 instead of wd1.
798 .Bd -literal -offset indent
799 set root_disk_unit=2
800 boot /kernel
801 .Ed
802 .Pp
803 See also:
804 .Bl -tag -width /usr/share/examples/bootforth/X
805 .It Pa /boot/loader.4th
806 Extra builtin-like words.
807 .It Pa /boot/support.4th
808 .Pa loader.conf
809 processing words.
810 .It Pa /usr/share/examples/bootforth/
811 Assorted examples.
812 .El
813 .Sh ERRORS
814 The following values are thrown by
815 .Nm :
816 .Bl -tag -width XXXXX -offset indent
817 .It 100
818 Any type of error in the processing of a builtin.
819 .It -1
820 .Ic Abort
821 executed.
822 .It -2
823 .Ic Abort"
824 executed.
825 .It -56
826 .Ic Quit
827 executed.
828 .It -256
829 Out of interpreting text.
830 .It -257
831 Need more text to succeed -- will finish on next run.
832 .It -258
833 .Ic Bye
834 executed.
835 .It -259
836 Unspecified error.
837 .El
838 .Sh SEE ALSO
839 .Xr libstand 3 ,
840 .Xr loader.conf 5 ,
841 .Xr tuning 7 ,
842 .Xr boot 8 ,
843 .Xr btxld 8 ,
844 .Xr loader.4th 8 ,
845 .Xr sysctl 8
846 .Sh STANDARDS
847 For the purposes of ANS Forth compliance, loader is an
848 .Bf Em
849 ANS Forth System with Environmental Restrictions, Providing
850 .Ef
851 .Bf Li
852 .No .( ,
853 .No :noname ,
854 .No ?do ,
855 parse, pick, roll, refill, to, value, \e, false, true,
856 .No <> ,
857 .No 0<> ,
858 compile\&, , erase, nip, tuck
859 .Ef
860 .Em and
861 .Li marker
862 .Bf Em
863 from the Core Extensions word set, Providing the Exception Extensions
864 word set, Providing the Locals Extensions word set, Providing the
865 Memory-Allocation Extensions word set, Providing
866 .Ef
867 .Bf Li
868 \&.s,
869 bye, forget, see, words,
870 \&[if],
871 \&[else]
872 .Ef
873 .Em and
874 .Li [then]
875 .Bf Em
876 from the Programming-Tools extension word set, Providing the
877 Search-Order extensions word set.
878 .Ef
879 .Sh HISTORY
880 The
881 .Nm
882 first appeared in
883 .Fx 3.1 .
884 .Sh AUTHORS
885 .An -nosplit
886 The
887 .Nm
888 was written by
889 .An Michael Smith Aq msmith@FreeBSD.org .
890 .Pp
891 .Tn FICL
892 was written by
893 .An John Sadler Aq john_sadler@alum.mit.edu .
894 .Sh BUGS
895 The
896 .Ic expect
897 and
898 .Ic accept
899 words will read from the input buffer instead of the console.
900 The latter will be fixed, but the former will not.