]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sys/boot/common/loader.8
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.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 May 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_shell
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.
595 This parameter is used to
596 prevent the buffer cache from eating too much
597 KVM in large-memory machine configurations.
598 Only mess around with this parameter if you need to
599 greatly extend the KVM reservation for other resources
600 such as the swap zone or
601 .Va kern.ipc.nmbclusters .
602 Note that
603 the NBUF parameter will override this limit.
604 Modifies
605 .Dv VM_BCACHE_SIZE_MAX .
606 .It Va machdep.disable_mtrrs
607 Disable the use of i686 MTRRs (x86 only).
608 .It Va net.inet.tcp.tcbhashsize
609 Overrides the compile-time set value of
610 .Dv TCBHASHSIZE
611 or the preset default of 512.
612 Must be a power of 2.
613 .It Va vm.kmem_size
614 Sets the size of kernel memory (bytes).
615 This overrides the value determined when the kernel was compiled.
616 Modifies
617 .Dv VM_KMEM_SIZE .
618 .It Va vm.kmem_size_min
619 .It Va vm.kmem_size_max
620 Sets the minimum and maximum (respectively) amount of kernel memory
621 that will be automatically allocated by the kernel.
622 These override the values determined when the kernel was compiled.
623 Modifies
624 .Dv VM_KMEM_SIZE_MIN
625 and
626 .Dv VM_KMEM_SIZE_MAX .
627 .El
628 .Ss BUILTIN PARSER
629 When a builtin command is executed, the rest of the line is taken
630 by it as arguments, and it is processed by a special parser which
631 is not used for regular Forth commands.
632 .Pp
633 This special parser applies the following rules to the parsed text:
634 .Pp
635 .Bl -enum
636 .It
637 All backslash characters are preprocessed.
638 .Bl -bullet
639 .It
640 \eb , \ef , \er , \en and \et are processed as in C.
641 .It
642 \es is converted to a space.
643 .It
644 \ev is converted to
645 .Tn ASCII
646 11.
647 .It
648 \ez is just skipped.
649 Useful for things like
650 .Dq \e0xf\ez\e0xf .
651 .It
652 \e0xN and \e0xNN are replaced by the hex N or NN.
653 .It
654 \eNNN is replaced by the octal NNN
655 .Tn ASCII
656 character.
657 .It
658 \e" , \e' and \e$ will escape these characters, preventing them from
659 receiving special treatment in Step 2, described below.
660 .It
661 \e\e will be replaced with a single \e .
662 .It
663 In any other occurrence, backslash will just be removed.
664 .El
665 .It
666 Every string between non-escaped quotes or double-quotes will be treated
667 as a single word for the purposes of the remaining steps.
668 .It
669 Replace any
670 .Li $VARIABLE
671 or
672 .Li ${VARIABLE}
673 with the value of the environment variable
674 .Va VARIABLE .
675 .It
676 Space-delimited arguments are passed to the called builtin command.
677 Spaces can also be escaped through the use of \e\e .
678 .El
679 .Pp
680 An exception to this parsing rule exists, and is described in
681 .Sx BUILTINS AND FORTH .
682 .Ss BUILTINS AND FORTH
683 All builtin words are state-smart, immediate words.
684 If interpreted, they behave exactly as described previously.
685 If they are compiled, though,
686 they extract their arguments from the stack instead of the command line.
687 .Pp
688 If compiled, the builtin words expect to find, at execution time, the
689 following parameters on the stack:
690 .D1 Ar addrN lenN ... addr2 len2 addr1 len1 N
691 where
692 .Ar addrX lenX
693 are strings which will compose the command line that will be parsed
694 into the builtin's arguments.
695 Internally, these strings are concatenated in from 1 to N,
696 with a space put between each one.
697 .Pp
698 If no arguments are passed, a 0
699 .Em must
700 be passed, even if the builtin accepts no arguments.
701 .Pp
702 While this behavior has benefits, it has its trade-offs.
703 If the execution token of a builtin is acquired (through
704 .Ic '
705 or
706 .Ic ['] ) ,
707 and then passed to
708 .Ic catch
709 or
710 .Ic execute ,
711 the builtin behavior will depend on the system state
712 .Bf Em
713 at the time
714 .Ic catch
715 or
716 .Ic execute
717 is processed!
718 .Ef
719 This is particularly annoying for programs that want or need to
720 handle exceptions.
721 In this case, the use of a proxy is recommended.
722 For example:
723 .Dl : (boot) boot ;
724 .Sh FICL
725 .Tn FICL
726 is a Forth interpreter written in C, in the form of a forth
727 virtual machine library that can be called by C functions and vice
728 versa.
729 .Pp
730 In
731 .Nm ,
732 each line read interactively is then fed to
733 .Tn FICL ,
734 which may call
735 .Nm
736 back to execute the builtin words.
737 The builtin
738 .Ic include
739 will also feed
740 .Tn FICL ,
741 one line at a time.
742 .Pp
743 The words available to
744 .Tn FICL
745 can be classified into four groups.
746 The
747 .Tn ANS
748 Forth standard words, extra
749 .Tn FICL
750 words, extra
751 .Fx
752 words, and the builtin commands;
753 the latter were already described.
754 The
755 .Tn ANS
756 Forth standard words are listed in the
757 .Sx STANDARDS
758 section.
759 The words falling in the two other groups are described in the
760 following subsections.
761 .Ss FICL EXTRA WORDS
762 .Bl -tag -width wid-set-super
763 .It Ic .env
764 .It Ic .ver
765 .It Ic -roll
766 .It Ic 2constant
767 .It Ic >name
768 .It Ic body>
769 .It Ic compare
770 This is the STRING word set's
771 .Ic compare .
772 .It Ic compile-only
773 .It Ic endif
774 .It Ic forget-wid
775 .It Ic parse-word
776 .It Ic sliteral
777 This is the STRING word set's
778 .Ic sliteral .
779 .It Ic wid-set-super
780 .It Ic w@
781 .It Ic w!
782 .It Ic x.
783 .It Ic empty
784 .It Ic cell-
785 .It Ic -rot
786 .El
787 .Ss FREEBSD EXTRA WORDS
788 .Bl -tag -width XXXXXXXX
789 .It Ic \&$ Pq --
790 Evaluates the remainder of the input buffer, after having printed it first.
791 .It Ic \&% Pq --
792 Evaluates the remainder of the input buffer under a
793 .Ic catch
794 exception guard.
795 .It Ic .#
796 Works like
797 .Ic .
798 but without outputting a trailing space.
799 .It Ic fclose Pq Ar fd --
800 Closes a file.
801 .It Ic fkey Pq Ar fd -- char
802 Reads a single character from a file.
803 .It Ic fload Pq Ar fd --
804 Processes a file
805 .Em fd .
806 .It Ic fopen Pq Ar addr len mode Li -- Ar fd
807 Opens a file.
808 Returns a file descriptor, or \-1 in case of failure.
809 The
810 .Ar mode
811 parameter selects whether the file is to be opened for read access, write
812 access, or both.
813 The constants
814 .Dv O_RDONLY , O_WRONLY ,
815 and
816 .Dv O_RDWR
817 are defined in
818 .Pa /boot/support.4th ,
819 indicating read only, write only, and read-write access, respectively.
820 .It Xo
821 .Ic fread
822 .Pq Ar fd addr len -- len'
823 .Xc
824 Tries to read
825 .Em len
826 bytes from file
827 .Em fd
828 into buffer
829 .Em addr .
830 Returns the actual number of bytes read, or -1 in case of error or end of
831 file.
832 .It Ic heap? Pq -- Ar cells
833 Return the space remaining in the dictionary heap, in cells.
834 This is not related to the heap used by dynamic memory allocation words.
835 .It Ic inb Pq Ar port -- char
836 Reads a byte from a port.
837 .It Ic key Pq -- Ar char
838 Reads a single character from the console.
839 .It Ic key? Pq -- Ar flag
840 Returns
841 .Ic true
842 if there is a character available to be read from the console.
843 .It Ic ms Pq Ar u --
844 Waits
845 .Em u
846 microseconds.
847 .It Ic outb Pq Ar port char --
848 Writes a byte to a port.
849 .It Ic seconds Pq -- Ar u
850 Returns the number of seconds since midnight.
851 .It Ic tib> Pq -- Ar addr len
852 Returns the remainder of the input buffer as a string on the stack.
853 .It Ic trace! Pq Ar flag --
854 Activates or deactivates tracing.
855 Does not work with
856 .Ic catch .
857 .El
858 .Ss FREEBSD DEFINED ENVIRONMENTAL QUERIES
859 .Bl -tag -width Ds
860 .It arch-i386
861 .Ic TRUE
862 if the architecture is IA32.
863 .It FreeBSD_version
864 .Fx
865 version at compile time.
866 .It loader_version
867 .Nm
868 version.
869 .El
870 .Ss SYSTEM DOCUMENTATION
871 .Sh FILES
872 .Bl -tag -width /boot/defaults/loader.conf -compact
873 .It Pa /boot/loader
874 .Nm
875 itself.
876 .It Pa /boot/boot.4th
877 Additional
878 .Tn FICL
879 initialization.
880 .It Pa /boot/boot.conf
881 .Nm
882 bootstrapping script.
883 Deprecated.
884 .It Pa /boot/defaults/loader.conf
885 .It Pa /boot/loader.conf
886 .It Pa /boot/loader.conf.local
887 .Nm
888 configuration files, as described in
889 .Xr loader.conf 5 .
890 .It Pa /boot/loader.rc
891 .Nm
892 bootstrapping script.
893 .It Pa /boot/loader.help
894 Loaded by
895 .Ic help .
896 Contains the help messages.
897 .El
898 .Sh EXAMPLES
899 Boot in single user mode:
900 .Pp
901 .Dl boot -s
902 .Pp
903 Load the kernel, a splash screen, and then autoboot in five seconds.
904 Notice that a kernel must be loaded before any other
905 .Ic load
906 command is attempted.
907 .Bd -literal -offset indent
908 load kernel
909 load splash_bmp
910 load -t splash_image_data /boot/chuckrulez.bmp
911 autoboot 5
912 .Ed
913 .Pp
914 Set the disk unit of the root device to 2, and then boot.
915 This would be needed in a system with two IDE disks,
916 with the second IDE disk hardwired to wd2 instead of wd1.
917 .Bd -literal -offset indent
918 set root_disk_unit=2
919 boot /kernel
920 .Ed
921 .Pp
922 See also:
923 .Bl -tag -width /usr/share/examples/bootforth/X
924 .It Pa /boot/loader.4th
925 Extra builtin-like words.
926 .It Pa /boot/support.4th
927 .Pa loader.conf
928 processing words.
929 .It Pa /usr/share/examples/bootforth/
930 Assorted examples.
931 .El
932 .Sh ERRORS
933 The following values are thrown by
934 .Nm :
935 .Bl -tag -width XXXXX -offset indent
936 .It 100
937 Any type of error in the processing of a builtin.
938 .It -1
939 .Ic Abort
940 executed.
941 .It -2
942 .Ic Abort"
943 executed.
944 .It -56
945 .Ic Quit
946 executed.
947 .It -256
948 Out of interpreting text.
949 .It -257
950 Need more text to succeed -- will finish on next run.
951 .It -258
952 .Ic Bye
953 executed.
954 .It -259
955 Unspecified error.
956 .El
957 .Sh SEE ALSO
958 .Xr libstand 3 ,
959 .Xr loader.conf 5 ,
960 .Xr tuning 7 ,
961 .Xr boot 8 ,
962 .Xr btxld 8
963 .Sh STANDARDS
964 For the purposes of ANS Forth compliance, loader is an
965 .Bf Em
966 ANS Forth System with Environmental Restrictions, Providing
967 .Ef
968 .Bf Li
969 .No .( ,
970 .No :noname ,
971 .No ?do ,
972 parse, pick, roll, refill, to, value, \e, false, true,
973 .No <> ,
974 .No 0<> ,
975 compile\&, , erase, nip, tuck
976 .Ef
977 .Em and
978 .Li marker
979 .Bf Em
980 from the Core Extensions word set, Providing the Exception Extensions
981 word set, Providing the Locals Extensions word set, Providing the
982 Memory-Allocation Extensions word set, Providing
983 .Ef
984 .Bf Li
985 \&.s,
986 bye, forget, see, words,
987 \&[if],
988 \&[else]
989 .Ef
990 .Em and
991 .Li [then]
992 .Bf Em
993 from the Programming-Tools extension word set, Providing the
994 Search-Order extensions word set.
995 .Ef
996 .Sh HISTORY
997 The
998 .Nm
999 first appeared in
1000 .Fx 3.1 .
1001 .Sh AUTHORS
1002 .An -nosplit
1003 The
1004 .Nm
1005 was written by
1006 .An Michael Smith Aq msmith@FreeBSD.org .
1007 .Pp
1008 .Tn FICL
1009 was written by
1010 .An John Sadler Aq john_sadler@alum.mit.edu .
1011 .Sh BUGS
1012 The
1013 .Ic expect
1014 and
1015 .Ic accept
1016 words will read from the input buffer instead of the console.
1017 The latter will be fixed, but the former will not.