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