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