* Remove the following obsolete options from the system:
[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.13 2006/05/11 08:23:19 swildner 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 .Pp
158 .Em WARNING :
159 The behavior of this builtin is changed if
160 .Xr loader.4th 8
161 is loaded.
162 .Pp
163 .It Ic echo Xo
164 .Op Fl n
165 .Op Aq message
166 .Xc
167 Displays text on the screen.
168 A new line will be printed unless
169 .Fl n
170 is specified.
171 .Pp
172 .It Ic heap
173 Displays memory usage statistics.
174 For debugging purposes only.
175 .Pp
176 .It Ic help Op topic Op subtopic
177 Shows help messages read from
178 .Pa /boot/loader.help .
179 The special topic
180 .Em index
181 will list the topics available.
182 .Pp
183 .It Ic include Ar file Op Ar
184 Process script files.
185 Each file, in turn, is completely read into memory,
186 and then each of its lines is passed to the command line interpreter.
187 If any error is returned by the interpreter, the include
188 command aborts immediately, without reading any other files, and
189 returns an error itself (see
190 .Sx ERRORS ) .
191 .Pp
192 .It Ic load Xo
193 .Op Fl t Ar type
194 .Ar file Cm ...
195 .Xc
196 Loads a kernel, kernel loadable module (kld), or file of opaque
197 contents tagged as being of the type
198 .Ar type .
199 Kernel and modules can be either in a.out or ELF format.
200 Any arguments passed after the name of the file to be loaded
201 will be passed as arguments to that file.
202 Currently, argument passing does not work for the kernel.
203 .Pp
204 .It Ic ls Xo
205 .Op Fl l
206 .Op Ar path
207 .Xc
208 Displays a listing of files in the directory
209 .Ar path ,
210 or the root directory if
211 .Ar path
212 is not specified.
213 If
214 .Fl l
215 is specified, file sizes will be shown too.
216 .Pp
217 .It Ic lsdev Op Fl v
218 Lists all of the devices from which it may be possible to load modules.
219 If
220 .Fl v
221 is specified, more details are printed.
222 .Pp
223 .It Ic lsmod Op Fl v
224 Displays loaded modules.
225 If
226 .Fl v
227 is specified, more details are shown.
228 .Pp
229 .It Ic more Ar file Op Ar
230 Display the files specified, with a pause at each
231 .Va LINES
232 displayed.
233 .Pp
234 .It Ic pnpscan Op Fl v
235 Scans for Plug-and-Play devices.
236 This is not functional at present.
237 .Pp
238 .It Ic read Xo
239 .Op Fl t Ar seconds
240 .Op Fl p Ar prompt
241 .Op Va variable
242 .Xc
243 Reads a line of input from the terminal, storing it in
244 .Va variable
245 if specified.
246 A timeout can be specified with
247 .Fl t ,
248 though it will be canceled at the first key pressed.
249 A prompt may also be displayed through the
250 .Fl p
251 flag.
252 .Pp
253 .It Ic reboot
254 Immediately reboots the system.
255 .Pp
256 .It Ic set Ar variable
257 .It Ic set Ar variable Ns = Ns Ar value
258 Set loader's environment variables.
259 .Pp
260 .It Ic show Op Va variable
261 Displays the specified variable's value, or all variables and their
262 values if
263 .Va variable
264 is not specified.
265 .Pp
266 .It Ic unload
267 Remove all modules from memory.
268 .Pp
269 .It Ic unset Va variable
270 Removes
271 .Va variable
272 from the environment.
273 .Pp
274 .It Ic \&?
275 Same as
276 .Dq help index .
277 .El
278 .Ss BUILTIN ENVIRONMENT VARIABLES
279 The
280 .Nm
281 has actually two different kinds of
282 .Sq environment
283 variables.
284 There are ANS Forth's
285 .Em environmental queries ,
286 and a separate space of environment variables used by builtins, which
287 are not directly available to Forth words.
288 It is the latter type that this section covers.
289 .Pp
290 Environment variables can be set and unset through the
291 .Ic set
292 and
293 .Ic unset
294 builtins, and can have their values interactively examined through the
295 use of the
296 .Ic show
297 builtin.
298 Their values can also be accessed as described in
299 .Sx BUILTIN PARSER .
300 .Pp
301 Notice that these environment variables are not inherited by any shell
302 after the system has been booted.
303 .Pp
304 A few variables are set automatically by
305 .Nm .
306 Others can affect the behavior of either
307 .Nm
308 or the kernel at boot.
309 Some options may require a value,
310 while others define behavior just by being set.
311 Both types of builtin variables are described below.
312 .Bl -tag -width bootfile
313 .It Va acpi_load
314 Unset this to disable automatic loading of the ACPI module.
315 See also
316 .Va hint.acpi.0.disabled
317 in
318 .Xr device.hints 5 .
319 .It Va autoboot_delay
320 Number of seconds
321 .Ic autoboot
322 will wait before booting.
323 If this variable is not defined,
324 .Ic autoboot
325 will default to 10 seconds.
326 .Pp
327 If set to
328 .Dq NO ,
329 no
330 .Ic autoboot
331 will be automatically attempted after processing
332 .Pa /boot/loader.rc ,
333 though explicit
334 .Ic autoboot Ns 's
335 will be processed normally, defaulting to 10 seconds delay.
336 .It Va boot_askname
337 Instructs the kernel to prompt the user for the name of the root device
338 when the kernel is booted.
339 .It Va boot_ddb
340 Instructs the kernel to start in the DDB debugger, rather than
341 proceeding to initialize when booted.
342 .It Va boot_gdb
343 Selects gdb-remote mode for the kernel debugger by default.
344 .It Va boot_single
345 Prevents the kernel from initiating a multi-user startup; instead single-user
346 mode will be entered when the kernel has finished device probing.
347 .It Va boot_userconfig
348 Requests that the kernel's interactive device configuration program
349 be run when the kernel is booted.
350 .It Va boot_verbose
351 Setting this variable causes extra debugging information to be printed
352 by the kernel during the boot phase.
353 .It Va bootfile
354 List of semicolon-separated search path for bootable kernels.
355 The default is
356 .Dq Li kernel;kernel.old .
357 .It Va console
358 Defines the current console.
359 .It Va currdev
360 Selects the default device.
361 Syntax for devices is odd.
362 .It Va init_path
363 Sets the list of binaries which the kernel will try to run as the initial
364 process.
365 The first matching binary is used.
366 The default list is
367 .Dq Li /sbin/init:/sbin/oinit:/sbin/init.bak:/stand/sysinstall .
368 .It Va interpret
369 Has the value
370 .Dq Li ok
371 if the Forth's current state is interpreting.
372 .It Va LINES
373 Define the number of lines on the screen, to be used by the pager.
374 .It Va module_path
375 Sets the list of directories which will be searched for modules
376 named in a load command or implicitly required by a dependency.
377 The default value for this variable is
378 .Dq Li /;/boot;/modules .
379 .It Va num_ide_disks
380 Sets the number of IDE disks as a workaround for some problems in
381 finding the root disk at boot.
382 This has been deprecated in favor of
383 .Va root_disk_unit .
384 .It Va prompt
385 Value of
386 .Nm Ns 's
387 prompt.
388 Defaults to
389 .Dq Li "${currdev}>" .
390 .It Va root_disk_unit
391 If the code which detects the disk unit number for the root disk is
392 confused, e.g. by a mix of SCSI and IDE disks, or IDE disks with
393 gaps in the sequence (e.g. no primary slave), the unit number can
394 be forced by setting this variable.
395 .It Va rootdev
396 By default the value of
397 .Va currdev
398 is used to set the root file system
399 when the kernel is booted.
400 This can be overridden by setting
401 .Va rootdev
402 explicitly.
403 .It Va dumpdev
404 The name of a device where the kernel can save a crash dump in case
405 of a panic.
406 This automatically sets the
407 .Va kern.dumpdev
408 .Xr sysctl 3
409 MIB variable.
410 .El
411 .Pp
412 Other variables are used to override kernel tunable parameters.
413 The following 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 primarly 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 .Pp
511 .Bl -enum
512 .It
513 All backslash characters are preprocessed.
514 .Bl -bullet
515 .It
516 \eb , \ef , \er , \en and \et are processed as in C.
517 .It
518 \es is converted to a space.
519 .It
520 \ev is converted to
521 .Tn ASCII
522 11.
523 .It
524 \ez is just skipped.
525 Useful for things like
526 .Dq \e0xf\ez\e0xf .
527 .It
528 \e0xN and \e0xNN are replaced by the hex N or NN.
529 .It
530 \eNNN is replaced by the octal NNN
531 .Tn ASCII
532 character.
533 .It
534 \e" , \e' and \e$ will escape these characters, preventing them from
535 receiving special treatment in Step 2, described below.
536 .It
537 \e\e will be replaced with a single \e .
538 .It
539 In any other occurrence, backslash will just be removed.
540 .El
541 .It
542 Every string between non-escaped quotes or double-quotes will be treated
543 as a single word for the purposes of the remaining steps.
544 .It
545 Replace any
546 .Li $VARIABLE
547 or
548 .Li ${VARIABLE}
549 with the value of the environment variable
550 .Va VARIABLE .
551 .It
552 Space-delimited arguments are passed to the called builtin command.
553 Spaces can also be escaped through the use of \e\e .
554 .El
555 .Pp
556 An exception to this parsing rule exists, and is described in
557 .Sx BUILTINS AND FORTH .
558 .Ss BUILTINS AND FORTH
559 All builtin words are state-smart, immediate words.
560 If interpreted, they behave exactly as described previously.
561 If they are compiled, though,
562 they extract their arguments from the stack instead of the command line.
563 .Pp
564 If compiled, the builtin words expect to find, at execution time, the
565 following parameters on the stack:
566 .D1 Ar addrN lenN ... addr2 len2 addr1 len1 N
567 where
568 .Ar addrX lenX
569 are strings which will compose the command line that will be parsed
570 into the builtin's arguments.
571 Internally, these strings are concatenated in from 1 to N,
572 with a space put between each one.
573 .Pp
574 If no arguments are passed, a 0
575 .Em must
576 be passed, even if the builtin accepts no arguments.
577 .Pp
578 While this behavior has benefits, it has its trade-offs.
579 If the execution token of a builtin is acquired (through
580 .Ic '
581 or
582 .Ic ['] ) ,
583 and then passed to
584 .Ic catch
585 or
586 .Ic execute ,
587 the builtin behavior will depend on the system state
588 .Bf Em
589 at the time
590 .Ic catch
591 or
592 .Ic execute
593 is processed
594 .Ef
595 \&! This is particularly annoying for programs that want or need to
596 handle exceptions.
597 In this case, the use of a proxy is recommended.
598 For example:
599 .Dl : (boot) boot ;
600 .Sh FICL
601 .Tn FICL
602 is a Forth interpreter written in C, in the form of a forth
603 virtual machine library that can be called by C functions and vice
604 versa.
605 .Pp
606 In
607 .Nm ,
608 each line read interactively is then fed to
609 .Tn FICL ,
610 which may call
611 .Nm
612 back to execute the builtin words.
613 The builtin
614 .Ic include
615 will also feed
616 .Tn FICL ,
617 one line at a time.
618 .Pp
619 The words available to
620 .Tn FICL
621 can be classified into four groups.
622 The
623 .Tn ANS
624 Forth standard words, extra
625 .Tn FICL
626 words, extra
627 .Dx
628 words, and the builtin commands;
629 the latter were already described.
630 The
631 .Tn ANS
632 Forth standard words are listed in the
633 .Sx STANDARDS
634 section.
635 The words falling in the two other groups are described in the
636 following subsections.
637 .Ss FICL EXTRA WORDS
638 .Bl -tag -width wid-set-super
639 .It Ic .env
640 .It Ic .ver
641 .It Ic -roll
642 .It Ic 2constant
643 .It Ic >name
644 .It Ic body>
645 .It Ic compare
646 This is the STRING word set's
647 .Ic compare .
648 .It Ic compile-only
649 .It Ic endif
650 .It Ic forget-wid
651 .It Ic parse-word
652 .It Ic sliteral
653 This is the STRING word set's
654 .Ic sliteral .
655 .It Ic wid-set-super
656 .It Ic w@
657 .It Ic w!
658 .It Ic x.
659 .It Ic empty
660 .It Ic cell-
661 .It Ic -rot
662 .El
663 .Ss FREEBSD EXTRA WORDS
664 .Bl -tag -width XXXXXXXX
665 .It Ic \&$ Pq --
666 Evaluates the remainder of the input buffer, after having printed it first.
667 .It Ic \&% Pq --
668 Evaluates the remainder of the input buffer under a
669 .Ic catch
670 exception guard.
671 .It Ic .#
672 Works like
673 .Ic .
674 but without outputting a trailing space.
675 .It Ic fclose Pq Ar fd --
676 Closes a file.
677 .It Ic fkey Pq Ar fd -- char
678 Reads a single character from a file.
679 .It Ic fload Pq Ar fd --
680 Processes a file
681 .Em fd .
682 .It Ic fopen Pq Ar addr len mode Li -- Ar fd
683 Opens a file.
684 Returns a file descriptor, or \-1 in case of failure.
685 The
686 .Ar mode
687 parameter selects whether the file is to be opened for read access, write
688 access, or both.
689 The constants
690 .Dv O_RDONLY , O_WRONLY ,
691 and
692 .Dv O_RDWR
693 are defined in
694 .Pa /boot/support.4th ,
695 indicating read only, write only, and read-write access, respectively.
696 .It Xo
697 .Ic fread
698 .Pq Ar fd addr len -- len'
699 .Xc
700 Tries to read
701 .Em len
702 bytes from file
703 .Em fd
704 into buffer
705 .Em addr .
706 Returns the actual number of bytes read, or -1 in case of error or end of
707 file.
708 .It Ic heap? Pq -- Ar cells
709 Return the space remaining in the dictionary heap, in cells.
710 This is not related to the heap used by dynamic memory allocation words.
711 .It Ic inb Pq Ar port -- char
712 Reads a byte from a port.
713 .It Ic key Pq -- Ar char
714 Reads a single character from the console.
715 .It Ic key? Pq -- Ar flag
716 Returns
717 .Ic true
718 if there is a character available to be read from the console.
719 .It Ic ms Pq Ar u --
720 Waits
721 .Em u
722 microseconds.
723 .It Ic outb Pq Ar port char --
724 Writes a byte to a port.
725 .It Ic seconds Pq -- Ar u
726 Returns the number of seconds since midnight.
727 .It Ic tib> Pq -- Ar addr len
728 Returns the remainder of the input buffer as a string on the stack.
729 .It Ic trace! Pq Ar flag --
730 Activates or deactivates tracing.
731 Does not work with
732 .Ic catch .
733 .El
734 .Ss FREEBSD DEFINED ENVIRONMENTAL QUERIES
735 .Bl -tag -width Ds
736 .It arch-i386
737 .Ic TRUE
738 if the architecture is IA32.
739 .It DragonFly_version
740 .Dx
741 version at compile time.
742 .It loader_version
743 .Nm
744 version.
745 .El
746 .Ss SYSTEM DOCUMENTATION
747 .Sh FILES
748 .Bl -tag -width /boot/defaults/loader.conf -compact
749 .It Pa /boot/loader
750 .Nm
751 itself.
752 .It Pa /boot/boot.4th
753 Additional
754 .Tn FICL
755 initialization.
756 .It Pa /boot/boot.conf
757 .Nm
758 bootstrapping script.
759 Deprecated.
760 .It Pa /boot/defaults/loader.conf
761 .It Pa /boot/loader.conf
762 .It Pa /boot/loader.conf.local
763 .Nm
764 configuration files, as described in
765 .Xr loader.conf 5 .
766 .It Pa /boot/loader.rc
767 .Nm
768 bootstrapping script.
769 .It Pa /boot/loader.help
770 Loaded by
771 .Ic help .
772 Contains the help messages.
773 .El
774 .Sh EXAMPLES
775 Boot in single user mode:
776 .Pp
777 .Dl boot -s
778 .Pp
779 Load kernel's user configuration file.
780 Notice that a kernel must be loaded before any other
781 .Ic load
782 command is attempted.
783 .Bd -literal -offset indent
784 load kernel
785 load -t userconfig_script /boot/kernel.conf
786 .Ed
787 .Pp
788 Load the kernel, a splash screen, and then autoboot in five seconds.
789 .Bd -literal -offset indent
790 load kernel
791 load splash_bmp
792 load -t splash_image_data /boot/chuckrulez.bmp
793 autoboot 5
794 .Ed
795 .Pp
796 Set the disk unit of the root device to 2, and then boot.
797 This would be needed in a system with two IDE disks,
798 with the second IDE disk hardwired to wd2 instead of wd1.
799 .Bd -literal -offset indent
800 set root_disk_unit=2
801 boot /kernel
802 .Ed
803 .Pp
804 See also:
805 .Bl -tag -width /usr/share/examples/bootforth/X
806 .It Pa /boot/loader.4th
807 Extra builtin-like words.
808 .It Pa /boot/support.4th
809 .Pa loader.conf
810 processing words.
811 .It Pa /usr/share/examples/bootforth/
812 Assorted examples.
813 .El
814 .Sh ERRORS
815 The following values are thrown by
816 .Nm :
817 .Bl -tag -width XXXXX -offset indent
818 .It 100
819 Any type of error in the processing of a builtin.
820 .It -1
821 .Ic Abort
822 executed.
823 .It -2
824 .Ic Abort"
825 executed.
826 .It -56
827 .Ic Quit
828 executed.
829 .It -256
830 Out of interpreting text.
831 .It -257
832 Need more text to succeed -- will finish on next run.
833 .It -258
834 .Ic Bye
835 executed.
836 .It -259
837 Unspecified error.
838 .El
839 .Sh SEE ALSO
840 .Xr libstand 3 ,
841 .Xr loader.conf 5 ,
842 .Xr tuning 7 ,
843 .Xr boot 8 ,
844 .Xr btxld 8
845 .Sh STANDARDS
846 For the purposes of ANS Forth compliance, loader is an
847 .Bf Em
848 ANS Forth System with Environmental Restrictions, Providing
849 .Ef
850 .Bf Li
851 .No .( ,
852 .No :noname ,
853 .No ?do ,
854 parse, pick, roll, refill, to, value, \e, false, true,
855 .No <> ,
856 .No 0<> ,
857 compile\&, , erase, nip, tuck
858 .Ef
859 .Em and
860 .Li marker
861 .Bf Em
862 from the Core Extensions word set, Providing the Exception Extensions
863 word set, Providing the Locals Extensions word set, Providing the
864 Memory-Allocation Extensions word set, Providing
865 .Ef
866 .Bf Li
867 \&.s,
868 bye, forget, see, words,
869 \&[if],
870 \&[else]
871 .Ef
872 .Em and
873 .Li [then]
874 .Bf Em
875 from the Programming-Tools extension word set, Providing the
876 Search-Order extensions word set.
877 .Ef
878 .Sh HISTORY
879 The
880 .Nm
881 first appeared in
882 .Fx 3.1 .
883 .Sh AUTHORS
884 .An -nosplit
885 The
886 .Nm
887 was written by
888 .An Michael Smith Aq msmith@FreeBSD.org .
889 .Pp
890 .Tn FICL
891 was written by
892 .An John Sadler Aq john_sadler@alum.mit.edu .
893 .Sh BUGS
894 The
895 .Ic expect
896 and
897 .Ic accept
898 words will read from the input buffer instead of the console.
899 The latter will be fixed, but the former will not.