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