binutils214 stage 2/4.
[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.4 2003/11/10 06:08:31 dillon Exp $
27 .\"
28 .\" Note: The date here should be updated whenever a non-trivial
29 .\" change is made to the manual page.
30 .Dd March 14, 1999
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 .Fx 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 .Pp
278 .El
279 .Ss BUILTIN ENVIRONMENT VARIABLES
280 The
281 .Nm
282 has actually two different kinds of
283 .Sq environment
284 variables.
285 There are ANS Forth's
286 .Em environmental queries ,
287 and a separate space of environment variables used by builtins, which
288 are not directly available to Forth words.
289 It is the latter type that this section covers.
290 .Pp
291 Environment variables can be set and unset through the
292 .Ic set
293 and
294 .Ic unset
295 builtins, and can have their values interactively examined through the
296 use of the
297 .Ic show
298 builtin.
299 Their values can also be accessed as described in
300 .Sx BUILTIN PARSER .
301 .Pp
302 Notice that these environment variables are not inherited by any shell
303 after the system has been booted.
304 .Pp
305 A few variables are set automatically by
306 .Nm .
307 Others can affect the behavior of either
308 .Nm
309 or the kernel at boot.
310 Some options may require a value,
311 while others define behavior just by being set.
312 Both types of builtin variables are described below.
313 .Bl -tag -width bootfile
314 .It Va acpi_load
315 Unset this to disable automatic loading of the ACPI module.
316 See also
317 .Va hint.acpi.0.disabled
318 in
319 .Xr device.hints 5 .
320 .It Va autoboot_delay
321 Number of seconds
322 .Ic autoboot
323 will wait before booting.
324 If this variable is not defined,
325 .Ic autoboot
326 will default to 10 seconds.
327 .Pp
328 If set to
329 .Dq NO ,
330 no
331 .Ic autoboot
332 will be automatically attempted after processing
333 .Pa /boot/loader.rc ,
334 though explicit
335 .Ic autoboot Ns 's
336 will be processed normally, defaulting to 10 seconds delay.
337 .It Va boot_askname
338 Instructs the kernel to prompt the user for the name of the root device
339 when the kernel is booted.
340 .It Va boot_ddb
341 Instructs the kernel to start in the DDB debugger, rather than
342 proceeding to initialize when booted.
343 .It Va boot_gdb
344 Selects gdb-remote mode for the kernel debugger by default.
345 .It Va boot_single
346 Prevents the kernel from initiating a multi-user startup; instead single-user
347 mode will be entered when the kernel has finished device probing.
348 .It Va boot_userconfig
349 Requests that the kernel's interactive device configuration program
350 be run when the kernel is booted.
351 .It Va boot_verbose
352 Setting this variable causes extra debugging information to be printed
353 by the kernel during the boot phase.
354 .It Va bootfile
355 List of semicolon-separated search path for bootable kernels.
356 The default is
357 .Dq Li kernel;kernel.old .
358 .It Va console
359 Defines the current console.
360 .It Va currdev
361 Selects the default device.
362 Syntax for devices is odd.
363 .It Va init_path
364 Sets the list of binaries which the kernel will try to run as the initial
365 process.
366 The first matching binary is used.
367 The default list is
368 .Dq Li /sbin/init:/sbin/oinit:/sbin/init.bak:/stand/sysinstall .
369 .It Va interpret
370 Has the value
371 .Dq Li ok
372 if the Forth's current state is interpreting.
373 .It Va LINES
374 Define the number of lines on the screen, to be used by the pager.
375 .It Va module_path
376 Sets the list of directories which will be searched for modules
377 named in a load command or implicitly required by a dependency.
378 The default value for this variable is
379 .Dq Li /boot/kernel;/boot/modules .
380 .It Va num_ide_disks
381 Sets the number of IDE disks as a workaround for some problems in
382 finding the root disk at boot.
383 This has been deprecated in favor of
384 .Va root_disk_unit .
385 .It Va prompt
386 Value of
387 .Nm Ns 's
388 prompt.
389 Defaults to
390 .Dq Li "${currdev}>" .
391 .It Va root_disk_unit
392 If the code which detects the disk unit number for the root disk is
393 confused, e.g. by a mix of SCSI and IDE disks, or IDE disks with
394 gaps in the sequence (e.g. no primary slave), the unit number can
395 be forced by setting this variable.
396 .It Va rootdev
397 By default the value of
398 .Va currdev
399 is used to set the root file system
400 when the kernel is booted.
401 This can be overridden by setting
402 .Va rootdev
403 explicitly.
404 .It Va dumpdev
405 The name of a device where the kernel can save a crash dump in case
406 of a panic.
407 This automatically sets the
408 .Va kern.dumpdev
409 .Xr sysctl 3
410 MIB variable.
411 .El
412 .Pp
413 Other variables are used to override kernel tunable parameters.
414 The following tunables are available:
415 .Bl -tag -width Va
416 .It Va hw.physmem
417 Limit the amount of physical memory the system will use.
418 By default the size is in bytes, but the
419 .Cm k , K , m , M , g
420 and
421 .Cm G
422 suffixes
423 are also accepted and indicate kilobytes, megabytes and gigabytes
424 respectively.
425 An invalid suffix will result in the variable being ignored by the
426 kernel.
427 .It Va hw.pci.enable_io_modes
428 Enable PCI resources which are left off by some BIOSes or are not
429 enabled correctly by the device driver.
430 Tunable value set to ON (1) by default, but this may cause problems
431 with some peripherals.
432 .It Va hw.pci.allow_unsupported_io_range
433 Allow the PCI bridge to pass through an unsupported memory range
434 assigned by the BIOS.
435 Tunable value set to OFF (0) by default.
436 .It Va kern.maxusers
437 Set the size of a number of statically allocated system tables; see
438 .Xr tuning 7
439 for a description of how to select an appropriate value for this
440 tunable.
441 When set, this tunable replaces the value declared in the kernel
442 compile-time configuration file.
443 .It Va kern.ipc.nmbclusters
444 Set the number of mbuf clusters to be allocated.
445 The value cannot be set below the default
446 determined when the kernel was compiled.
447 Modifies
448 .Va NMBCLUSTERS .
449 .It Va kern.ipc.nsfbufs
450 Set the number of
451 .Xr sendfile 2
452 buffers to be allocated.
453 Overrides
454 .Dv NSFBUFS .
455 .It Va kern.vm.kmem.size
456 Sets the size of kernel memory (bytes).
457 This overrides the value determined when the kernel was compiled.
458 Modifies
459 .Va VM_KMEM_SIZE .
460 .It Va kern.maxswzone
461 Limits the amount of KVM to be used to hold swap
462 meta information, which directly governs the
463 maximum amount of swap the system can support.
464 This value is specified in bytes of KVA space
465 and defaults to around 70MBytes.
466 Care should be taken
467 to not reduce this value such that the actual
468 amount of configured swap exceeds 1/2 the
469 kernel-supported swap.
470 The default 70MB allows
471 the kernel to support a maximum of (approximately)
472 14GB of configured swap.
473 Only mess around with
474 this parameter if you need to greatly extend the
475 KVM reservation for other resources such as the
476 buffer cache or
477 .Va NMBCLUSTERS .
478 Modifies
479 .Va VM_SWZONE_SIZE_MAX .
480 .It Va kern.maxbcache
481 Limits the amount of KVM reserved for use by the
482 buffer cache, specified in bytes.
483 The default maximum is 200MB.
484 This parameter is used to
485 prevent the buffer cache from eating too much
486 KVM in large-memory machine configurations.
487 Only mess around with this parameter if you need to
488 greatly extend the KVM reservation for other resources
489 such as the swap zone or
490 .Va NMBCLUSTERS .
491 Note that
492 the NBUF parameter will override this limit.
493 Modifies
494 .Va VM_BCACHE_SIZE_MAX .
495 .It Va machdep.disable_mtrrs
496 Disable the use of i686 MTRRs (x86 only).
497 .It Va net.inet.tcp.tcbhashsize
498 Overrides the compile-time set value of
499 .Va TCBHASHSIZE
500 or the preset default of 512.
501 Must be a power of 2.
502 .El
503 .Ss BUILTIN PARSER
504 When a builtin command is executed, the rest of the line is taken
505 by it as arguments, and it is processed by a special parser which
506 is not used for regular Forth commands.
507 .Pp
508 This special parser applies the following rules to the parsed text:
509 .Pp
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 .Fx
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 FREEBSD 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 FREEBSD DEFINED ENVIRONMENTAL QUERIES
734 .Bl -tag -width Ds
735 .It arch-i386
736 .Ic TRUE
737 if the architecture is IA32.
738 .It arch-alpha
739 .Ic TRUE
740 if the architecture is AXP.
741 .It FreeBSD_version
742 .Fx
743 version at compile time.
744 .It loader_version
745 .Nm
746 version.
747 .El
748 .Ss SYSTEM DOCUMENTATION
749 .Sh FILES
750 .Bl -tag -width /boot/defaults/loader.conf -compact
751 .It Pa /boot/loader
752 .Nm
753 itself.
754 .It Pa /boot/boot.4th
755 Additional
756 .Tn FICL
757 initialization.
758 .It Pa /boot/boot.conf
759 .Nm
760 bootstrapping script.
761 Deprecated.
762 .It Pa /boot/defaults/loader.conf
763 .It Pa /boot/loader.conf
764 .It Pa /boot/loader.conf.local
765 .Nm
766 configuration files, as described in
767 .Xr loader.conf 5 .
768 .It Pa /boot/loader.rc
769 .Nm
770 bootstrapping script.
771 .It Pa /boot/loader.help
772 Loaded by
773 .Ic help .
774 Contains the help messages.
775 .El
776 .Sh EXAMPLES
777 Boot in single user mode:
778 .Pp
779 .Dl boot -s
780 .Pp
781 Load kernel's user configuration file.
782 Notice that a kernel must be loaded before any other
783 .Ic load
784 command is attempted.
785 .Bd -literal -offset indent
786 load kernel
787 load -t userconfig_script /boot/kernel.conf
788 .Ed
789 .Pp
790 Load the kernel, a splash screen, and then autoboot in five seconds.
791 .Bd -literal -offset indent
792 load kernel
793 load splash_bmp
794 load -t splash_image_data /boot/chuckrulez.bmp
795 autoboot 5
796 .Ed
797 .Pp
798 Set the disk unit of the root device to 2, and then boot.
799 This would be needed in a system with two IDE disks,
800 with the second IDE disk hardwired to wd2 instead of wd1.
801 .Bd -literal -offset indent
802 set root_disk_unit=2
803 boot /kernel
804 .Ed
805 .Pp
806 See also:
807 .Bl -tag -width /usr/share/examples/bootforth/X
808 .It Pa /boot/loader.4th
809 Extra builtin-like words.
810 .It Pa /boot/support.4th
811 .Pa loader.conf
812 processing words.
813 .It Pa /usr/share/examples/bootforth/
814 Assorted examples.
815 .El
816 .Sh ERRORS
817 The following values are thrown by
818 .Nm :
819 .Bl -tag -width XXXXX -offset indent
820 .It 100
821 Any type of error in the processing of a builtin.
822 .It -1
823 .Ic Abort
824 executed.
825 .It -2
826 .Ic Abort"
827 executed.
828 .It -56
829 .Ic Quit
830 executed.
831 .It -256
832 Out of interpreting text.
833 .It -257
834 Need more text to succeed -- will finish on next run.
835 .It -258
836 .Ic Bye
837 executed.
838 .It -259
839 Unspecified error.
840 .El
841 .Sh SEE ALSO
842 .Xr libstand 3 ,
843 .Xr loader.conf 5 ,
844 .Xr tuning 7 ,
845 .Xr boot 8 ,
846 .Xr btxld 8
847 .Sh STANDARDS
848 For the purposes of ANS Forth compliance, loader is an
849 .Bf Em
850 ANS Forth System with Environmental Restrictions, Providing
851 .Ef
852 .Bf Li
853 .No .( ,
854 .No :noname ,
855 .No ?do ,
856 parse, pick, roll, refill, to, value, \e, false, true,
857 .No <> ,
858 .No 0<> ,
859 compile\&, , erase, nip, tuck
860 .Ef
861 .Em and
862 .Li marker
863 .Bf Em
864 from the Core Extensions word set, Providing the Exception Extensions
865 word set, Providing the Locals Extensions word set, Providing the
866 Memory-Allocation Extensions word set, Providing
867 .Ef
868 .Bf Li
869 \&.s,
870 bye, forget, see, words,
871 \&[if],
872 \&[else]
873 .Ef
874 .Em and
875 .Li [then]
876 .Bf Em
877 from the Programming-Tools extension word set, Providing the
878 Search-Order extensions word set.
879 .Ef
880 .Sh HISTORY
881 The
882 .Nm
883 first appeared in
884 .Fx 3.1 .
885 .Sh AUTHORS
886 .An -nosplit
887 The
888 .Nm
889 was written by
890 .An Michael Smith Aq msmith@FreeBSD.org .
891 .Pp
892 .Tn FICL
893 was written by
894 .An John Sadler Aq john_sadler@alum.mit.edu .
895 .Sh BUGS
896 The
897 .Ic expect
898 and
899 .Ic accept
900 words will read from the input buffer instead of the console.
901 The latter will be fixed, but the former will not.