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