Merge from vendor branch BSDINSTALLER:
[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.17 2008/02/19 21:41:07 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 tunables are available:
412 .Bl -tag -width Va
413 .It Va hw.physmem
414 Limit the amount of physical memory the system will use.
415 By default the size is in bytes, but the
416 .Cm k , K , m , M , g
417 and
418 .Cm G
419 suffixes
420 are also accepted and indicate kilobytes, megabytes and gigabytes
421 respectively.
422 An invalid suffix will result in the variable being ignored by the
423 kernel.
424 .It Va kern.emergency_intr_enable
425 Setting this to 1 enables emergency interrupt polling.  All interrupt
426 handlers are executed periodically.  This mode is very expensive and should
427 only be used to get a system accessible when interrupt routing is
428 otherwise broken.  It is primarily used by kernel developers to debug new
429 systems.
430 .It Va kern.emergency_intr_freq
431 Set the polling rate for the emergency interrupt polling code.  The
432 default is 10 (hz) to dissuade casual use.  If you are doing real work
433 with emergency interrupt polling mode enabled, it is recommended
434 that you use a frequency between 100hz and 300hz.
435 .It Va kern.maxusers
436 Set the size of a number of statically allocated system tables; see
437 .Xr tuning 7
438 for a description of how to select an appropriate value for this
439 tunable.
440 When set, this tunable replaces the value declared in the kernel
441 compile-time configuration file.
442 .It Va kern.ipc.nmbclusters
443 Set the number of mbuf clusters to be allocated.
444 The value cannot be set below the default
445 determined when the kernel was compiled.
446 Modifies
447 .Va NMBCLUSTERS .
448 .It Va kern.ipc.nsfbufs
449 Set the number of
450 .Xr sendfile 2
451 buffers to be allocated.
452 Overrides
453 .Dv NSFBUFS .
454 .It Va kern.mmxopt
455 Toggles the mmx optimizations for the bcopy/copyin/copyout routines
456 .It Va kern.vm.kmem.size
457 Sets the size of kernel memory (bytes).
458 This overrides the value determined when the kernel was compiled.
459 .It Va kern.maxswzone
460 Limits the amount of KVM to be used to hold swap
461 meta information, which directly governs the
462 maximum amount of swap the system can support.
463 This value is specified in bytes of KVA space
464 and defaults to around 70MBytes.
465 Care should be taken
466 to not reduce this value such that the actual
467 amount of configured swap exceeds \(12 the
468 kernel-supported swap.
469 The default 70MB allows
470 the kernel to support a maximum of (approximately)
471 14GB of configured swap.
472 Only mess around with
473 this parameter if you need to greatly extend the
474 KVM reservation for other resources such as the
475 buffer cache or
476 .Va NMBCLUSTERS .
477 Modifies
478 .Va VM_SWZONE_SIZE_MAX .
479 .It Va kern.maxbcache
480 Limits the amount of KVM reserved for use by the
481 buffer cache, specified in bytes.
482 The default maximum is 200MB.
483 This parameter is used to
484 prevent the buffer cache from eating too much
485 KVM in large-memory machine configurations.
486 Only mess around with this parameter if you need to
487 greatly extend the KVM reservation for other resources
488 such as the swap zone or
489 .Va NMBCLUSTERS .
490 Note that
491 the NBUF parameter will override this limit.
492 Modifies
493 .Va VM_BCACHE_SIZE_MAX .
494 .It Va machdep.disable_mtrrs
495 Disable the use of i686 MTRRs (x86 only).
496 .It Va net.inet.tcp.tcbhashsize
497 Overrides the compile-time set value of
498 .Va TCBHASHSIZE
499 or the preset default of 512.
500 Must be a power of 2.
501 .El
502 .Ss BUILTIN PARSER
503 When a builtin command is executed, the rest of the line is taken
504 by it as arguments, and it is processed by a special parser which
505 is not used for regular Forth commands.
506 .Pp
507 This special parser applies the following rules to the parsed text:
508 .Pp
509 .Bl -enum
510 .It
511 All backslash characters are preprocessed.
512 .Bl -bullet
513 .It
514 \eb , \ef , \er , \en and \et are processed as in C.
515 .It
516 \es is converted to a space.
517 .It
518 \ev is converted to
519 .Tn ASCII
520 11.
521 .It
522 \ez is just skipped.
523 Useful for things like
524 .Dq \e0xf\ez\e0xf .
525 .It
526 \e0xN and \e0xNN are replaced by the hex N or NN.
527 .It
528 \eNNN is replaced by the octal NNN
529 .Tn ASCII
530 character.
531 .It
532 \e" , \e' and \e$ will escape these characters, preventing them from
533 receiving special treatment in Step 2, described below.
534 .It
535 \e\e will be replaced with a single \e .
536 .It
537 In any other occurrence, backslash will just be removed.
538 .El
539 .It
540 Every string between non-escaped quotes or double-quotes will be treated
541 as a single word for the purposes of the remaining steps.
542 .It
543 Replace any
544 .Li $VARIABLE
545 or
546 .Li ${VARIABLE}
547 with the value of the environment variable
548 .Va VARIABLE .
549 .It
550 Space-delimited arguments are passed to the called builtin command.
551 Spaces can also be escaped through the use of \e\e .
552 .El
553 .Pp
554 An exception to this parsing rule exists, and is described in
555 .Sx BUILTINS AND FORTH .
556 .Ss BUILTINS AND FORTH
557 All builtin words are state-smart, immediate words.
558 If interpreted, they behave exactly as described previously.
559 If they are compiled, though,
560 they extract their arguments from the stack instead of the command line.
561 .Pp
562 If compiled, the builtin words expect to find, at execution time, the
563 following parameters on the stack:
564 .D1 Ar addrN lenN ... addr2 len2 addr1 len1 N
565 where
566 .Ar addrX lenX
567 are strings which will compose the command line that will be parsed
568 into the builtin's arguments.
569 Internally, these strings are concatenated in from 1 to N,
570 with a space put between each one.
571 .Pp
572 If no arguments are passed, a 0
573 .Em must
574 be passed, even if the builtin accepts no arguments.
575 .Pp
576 While this behavior has benefits, it has its trade-offs.
577 If the execution token of a builtin is acquired (through
578 .Ic '
579 or
580 .Ic ['] ) ,
581 and then passed to
582 .Ic catch
583 or
584 .Ic execute ,
585 the builtin behavior will depend on the system state
586 .Bf Em
587 at the time
588 .Ic catch
589 or
590 .Ic execute
591 is processed
592 .Ef
593 \&! This is particularly annoying for programs that want or need to
594 handle exceptions.
595 In this case, the use of a proxy is recommended.
596 For example:
597 .Dl : (boot) boot \&;
598 .Sh FICL
599 .Tn FICL
600 is a Forth interpreter written in C, in the form of a forth
601 virtual machine library that can be called by C functions and vice
602 versa.
603 .Pp
604 In
605 .Nm ,
606 each line read interactively is then fed to
607 .Tn FICL ,
608 which may call
609 .Nm
610 back to execute the builtin words.
611 The builtin
612 .Ic include
613 will also feed
614 .Tn FICL ,
615 one line at a time.
616 .Pp
617 The words available to
618 .Tn FICL
619 can be classified into four groups.
620 The
621 .Tn ANS
622 Forth standard words, extra
623 .Tn FICL
624 words, extra
625 .Dx
626 words, and the builtin commands;
627 the latter were already described.
628 The
629 .Tn ANS
630 Forth standard words are listed in the
631 .Sx STANDARDS
632 section.
633 The words falling in the two other groups are described in the
634 following subsections.
635 .Ss FICL EXTRA WORDS
636 .Bl -tag -width wid-set-super
637 .It Ic .env
638 .It Ic .ver
639 .It Ic -roll
640 .It Ic 2constant
641 .It Ic >name
642 .It Ic body>
643 .It Ic compare
644 This is the STRING word set's
645 .Ic compare .
646 .It Ic compile-only
647 .It Ic endif
648 .It Ic forget-wid
649 .It Ic parse-word
650 .It Ic sliteral
651 This is the STRING word set's
652 .Ic sliteral .
653 .It Ic wid-set-super
654 .It Ic w@
655 .It Ic w!
656 .It Ic x.
657 .It Ic empty
658 .It Ic cell-
659 .It Ic -rot
660 .El
661 .Ss DRAGONFLY EXTRA WORDS
662 .Bl -tag -width XXXXXXXX
663 .It Ic \&$ Pq --
664 Evaluates the remainder of the input buffer, after having printed it first.
665 .It Ic \&% Pq --
666 Evaluates the remainder of the input buffer under a
667 .Ic catch
668 exception guard.
669 .It Ic .#
670 Works like
671 .Ic .
672 but without outputting a trailing space.
673 .It Ic fclose Pq Ar fd --
674 Closes a file.
675 .It Ic fkey Pq Ar fd -- char
676 Reads a single character from a file.
677 .It Ic fload Pq Ar fd --
678 Processes a file
679 .Em fd .
680 .It Ic fopen Pq Ar addr len mode Li -- Ar fd
681 Opens a file.
682 Returns a file descriptor, or \-1 in case of failure.
683 The
684 .Ar mode
685 parameter selects whether the file is to be opened for read access, write
686 access, or both.
687 The constants
688 .Dv O_RDONLY , O_WRONLY ,
689 and
690 .Dv O_RDWR
691 are defined in
692 .Pa /boot/support.4th ,
693 indicating read only, write only, and read-write access, respectively.
694 .It Xo
695 .Ic fread
696 .Pq Ar fd addr len -- len'
697 .Xc
698 Tries to read
699 .Em len
700 bytes from file
701 .Em fd
702 into buffer
703 .Em addr .
704 Returns the actual number of bytes read, or -1 in case of error or end of
705 file.
706 .It Ic heap? Pq -- Ar cells
707 Return the space remaining in the dictionary heap, in cells.
708 This is not related to the heap used by dynamic memory allocation words.
709 .It Ic inb Pq Ar port -- char
710 Reads a byte from a port.
711 .It Ic key Pq -- Ar char
712 Reads a single character from the console.
713 .It Ic key? Pq -- Ar flag
714 Returns
715 .Ic true
716 if there is a character available to be read from the console.
717 .It Ic ms Pq Ar u --
718 Waits
719 .Em u
720 microseconds.
721 .It Ic outb Pq Ar port char --
722 Writes a byte to a port.
723 .It Ic seconds Pq -- Ar u
724 Returns the number of seconds since midnight.
725 .It Ic tib> Pq -- Ar addr len
726 Returns the remainder of the input buffer as a string on the stack.
727 .It Ic trace! Pq Ar flag --
728 Activates or deactivates tracing.
729 Does not work with
730 .Ic catch .
731 .El
732 .Ss DRAGONFLY DEFINED ENVIRONMENTAL QUERIES
733 .Bl -tag -width Ds
734 .It arch-i386
735 .Ic TRUE
736 if the architecture is IA32.
737 .It DragonFly_version
738 .Dx
739 version at compile time.
740 .It loader_version
741 .Nm
742 version.
743 .El
744 .Ss SYSTEM DOCUMENTATION
745 .Sh FILES
746 .Bl -tag -width /boot/defaults/loader.conf -compact
747 .It Pa /boot/loader
748 .Nm
749 itself.
750 .It Pa /boot/boot.4th
751 Additional
752 .Tn FICL
753 initialization.
754 .It Pa /boot/boot.conf
755 .Nm
756 bootstrapping script.
757 Deprecated.
758 .It Pa /boot/defaults/loader.conf
759 .It Pa /boot/loader.conf
760 .It Pa /boot/loader.conf.local
761 .Nm
762 configuration files, as described in
763 .Xr loader.conf 5 .
764 .It Pa /boot/loader.rc
765 .Nm
766 bootstrapping script.
767 .It Pa /boot/loader.help
768 Loaded by
769 .Ic help .
770 Contains the help messages.
771 .El
772 .Sh EXAMPLES
773 Boot in single user mode:
774 .Pp
775 .Dl boot -s
776 .Pp
777 Load kernel's user configuration file.
778 Notice that a kernel must be loaded before any other
779 .Ic load
780 command is attempted.
781 .Bd -literal -offset indent
782 load kernel
783 load -t userconfig_script /boot/kernel.conf
784 .Ed
785 .Pp
786 Load the kernel, a splash screen, and then autoboot in five seconds.
787 .Bd -literal -offset indent
788 load kernel
789 load splash_bmp
790 load -t splash_image_data /boot/chuckrulez.bmp
791 autoboot 5
792 .Ed
793 .Pp
794 Set the disk unit of the root device to 2, and then boot.
795 This would be needed in a system with two IDE disks,
796 with the second IDE disk hardwired to wd2 instead of wd1.
797 .Bd -literal -offset indent
798 set root_disk_unit=2
799 boot /kernel
800 .Ed
801 .Pp
802 See also:
803 .Bl -tag -width /usr/share/examples/bootforth/X
804 .It Pa /boot/loader.4th
805 Extra builtin-like words.
806 .It Pa /boot/support.4th
807 .Pa loader.conf
808 processing words.
809 .It Pa /usr/share/examples/bootforth/
810 Assorted examples.
811 .El
812 .Sh ERRORS
813 The following values are thrown by
814 .Nm :
815 .Bl -tag -width XXXXX -offset indent
816 .It 100
817 Any type of error in the processing of a builtin.
818 .It -1
819 .Ic Abort
820 executed.
821 .It -2
822 .Ic Abort"
823 executed.
824 .It -56
825 .Ic Quit
826 executed.
827 .It -256
828 Out of interpreting text.
829 .It -257
830 Need more text to succeed -- will finish on next run.
831 .It -258
832 .Ic Bye
833 executed.
834 .It -259
835 Unspecified error.
836 .El
837 .Sh SEE ALSO
838 .Xr libstand 3 ,
839 .Xr loader.conf 5 ,
840 .Xr tuning 7 ,
841 .Xr boot 8 ,
842 .Xr btxld 8 ,
843 .Xr loader.4th 8
844 .Sh STANDARDS
845 For the purposes of ANS Forth compliance, loader is an
846 .Bf Em
847 ANS Forth System with Environmental Restrictions, Providing
848 .Ef
849 .Bf Li
850 .No .( ,
851 .No :noname ,
852 .No ?do ,
853 parse, pick, roll, refill, to, value, \e, false, true,
854 .No <> ,
855 .No 0<> ,
856 compile\&, , erase, nip, tuck
857 .Ef
858 .Em and
859 .Li marker
860 .Bf Em
861 from the Core Extensions word set, Providing the Exception Extensions
862 word set, Providing the Locals Extensions word set, Providing the
863 Memory-Allocation Extensions word set, Providing
864 .Ef
865 .Bf Li
866 \&.s,
867 bye, forget, see, words,
868 \&[if],
869 \&[else]
870 .Ef
871 .Em and
872 .Li [then]
873 .Bf Em
874 from the Programming-Tools extension word set, Providing the
875 Search-Order extensions word set.
876 .Ef
877 .Sh HISTORY
878 The
879 .Nm
880 first appeared in
881 .Fx 3.1 .
882 .Sh AUTHORS
883 .An -nosplit
884 The
885 .Nm
886 was written by
887 .An Michael Smith Aq msmith@FreeBSD.org .
888 .Pp
889 .Tn FICL
890 was written by
891 .An John Sadler Aq john_sadler@alum.mit.edu .
892 .Sh BUGS
893 The
894 .Ic expect
895 and
896 .Ic accept
897 words will read from the input buffer instead of the console.
898 The latter will be fixed, but the former will not.