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