1999-03-15 08:52:23 +00:00
|
|
|
.\" Copyright (c) 1999 Daniel C. Sobral
|
|
|
|
.\" All rights reserved.
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\"
|
|
|
|
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
.\" SUCH DAMAGE.
|
|
|
|
.\"
|
1999-08-28 01:08:13 +00:00
|
|
|
.\" $FreeBSD$
|
1999-03-15 08:52:23 +00:00
|
|
|
.\"
|
2012-01-07 11:16:23 +00:00
|
|
|
.Dd January 7, 2012
|
1999-03-15 08:52:23 +00:00
|
|
|
.Dt LOADER 8
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm loader
|
2000-05-18 12:44:50 +00:00
|
|
|
.Nd kernel bootstrapping final stage
|
1999-03-15 08:52:23 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The program called
|
|
|
|
.Nm
|
2000-11-14 11:20:58 +00:00
|
|
|
is the final stage of
|
|
|
|
.Fx Ns 's
|
|
|
|
kernel bootstrapping process.
|
2000-05-18 12:44:50 +00:00
|
|
|
On IA32 (i386) architectures, it is a
|
1999-03-15 08:52:23 +00:00
|
|
|
.Pa BTX
|
2000-06-22 08:37:22 +00:00
|
|
|
client.
|
|
|
|
It is linked statically to
|
1999-05-03 08:32:45 +00:00
|
|
|
.Xr libstand 3
|
|
|
|
and usually located in the directory
|
1999-03-15 08:52:23 +00:00
|
|
|
.Pa /boot .
|
|
|
|
.Pp
|
|
|
|
It provides a scripting language that can be used to
|
|
|
|
automate tasks, do pre-configuration or assist in recovery
|
2000-06-22 08:37:22 +00:00
|
|
|
procedures.
|
|
|
|
This scripting language is roughly divided in
|
|
|
|
two main components.
|
|
|
|
The smaller one is a set of commands
|
1999-03-15 08:52:23 +00:00
|
|
|
designed for direct use by the casual user, called "builtin
|
2000-06-22 08:37:22 +00:00
|
|
|
commands" for historical reasons.
|
2002-05-29 22:57:18 +00:00
|
|
|
The main drive behind these commands is user-friendliness.
|
2000-06-22 08:37:22 +00:00
|
|
|
The bigger component is an
|
1999-03-15 08:52:23 +00:00
|
|
|
.Tn ANS
|
2003-06-29 20:57:55 +00:00
|
|
|
Forth compatible Forth interpreter based on FICL, by
|
1999-03-15 08:52:23 +00:00
|
|
|
.An John Sadler .
|
|
|
|
.Pp
|
|
|
|
During initialization,
|
|
|
|
.Nm
|
|
|
|
will probe for a console and set the
|
|
|
|
.Va console
|
|
|
|
variable, or set it to serial console
|
2005-06-14 08:49:14 +00:00
|
|
|
.Pq Dq Li comconsole
|
2000-06-22 08:37:22 +00:00
|
|
|
if the previous boot stage used that.
|
2005-05-27 19:31:00 +00:00
|
|
|
If multiple consoles are selected, they will be listed separated by spaces.
|
2000-06-22 08:37:22 +00:00
|
|
|
Then, devices are probed,
|
1999-03-15 08:52:23 +00:00
|
|
|
.Va currdev
|
|
|
|
and
|
|
|
|
.Va loaddev
|
|
|
|
are set, and
|
|
|
|
.Va LINES
|
2000-06-22 08:37:22 +00:00
|
|
|
is set to 24.
|
2001-07-15 08:21:37 +00:00
|
|
|
Next,
|
1999-03-15 08:52:23 +00:00
|
|
|
.Tn FICL
|
1999-07-28 20:30:59 +00:00
|
|
|
is initialized, the builtin words are added to its vocabulary, and
|
1999-03-15 08:52:23 +00:00
|
|
|
.Pa /boot/boot.4th
|
2002-07-15 03:39:34 +00:00
|
|
|
is processed if it exists.
|
2000-06-22 08:37:22 +00:00
|
|
|
No disk switching is possible while that file is being read.
|
|
|
|
The inner interpreter
|
1999-03-15 08:52:23 +00:00
|
|
|
.Nm
|
|
|
|
will use with
|
|
|
|
.Tn FICL
|
|
|
|
is then set to
|
|
|
|
.Ic interpret ,
|
|
|
|
which is
|
|
|
|
.Tn FICL Ns 's
|
2000-06-22 08:37:22 +00:00
|
|
|
default.
|
|
|
|
After that,
|
1999-03-15 08:52:23 +00:00
|
|
|
.Pa /boot/loader.rc
|
|
|
|
is processed if available, and, failing that,
|
|
|
|
.Pa /boot/boot.conf
|
2002-07-15 03:39:34 +00:00
|
|
|
is read for historical reasons.
|
2000-06-22 08:37:22 +00:00
|
|
|
These files are processed through the
|
1999-03-15 08:52:23 +00:00
|
|
|
.Ic include
|
2002-05-29 22:57:18 +00:00
|
|
|
command, which reads all of them into memory before processing them,
|
1999-03-15 08:52:23 +00:00
|
|
|
making disk changes possible.
|
|
|
|
.Pp
|
|
|
|
At this point, if an
|
|
|
|
.Ic autoboot
|
|
|
|
has not been tried, and if
|
|
|
|
.Va autoboot_delay
|
|
|
|
is not set to
|
2005-06-14 08:49:14 +00:00
|
|
|
.Dq Li NO
|
1999-03-15 08:52:23 +00:00
|
|
|
(not case sensitive), then an
|
|
|
|
.Ic autoboot
|
2000-06-22 08:37:22 +00:00
|
|
|
will be tried.
|
|
|
|
If the system gets past this point,
|
1999-03-15 08:52:23 +00:00
|
|
|
.Va prompt
|
|
|
|
will be set and
|
|
|
|
.Nm
|
|
|
|
will engage interactive mode.
|
2005-05-19 23:03:02 +00:00
|
|
|
Please note that historically even when
|
|
|
|
.Va autoboot_delay
|
|
|
|
is set to
|
2005-06-14 08:49:14 +00:00
|
|
|
.Dq Li 0
|
2005-05-19 23:03:02 +00:00
|
|
|
user will be able to interrupt autoboot process by pressing some key
|
2005-06-14 08:49:14 +00:00
|
|
|
on the console while kernel and modules are being loaded.
|
|
|
|
In some
|
2005-05-19 23:03:02 +00:00
|
|
|
cases such behaviour may be undesirable, to prevent it set
|
|
|
|
.Va autoboot_delay
|
|
|
|
to
|
2005-06-14 08:49:14 +00:00
|
|
|
.Dq Li -1 ,
|
2005-05-19 23:03:02 +00:00
|
|
|
in this case
|
|
|
|
.Nm
|
|
|
|
will engage interactive mode only if
|
|
|
|
.Ic autoboot
|
|
|
|
has failed.
|
1999-03-15 08:52:23 +00:00
|
|
|
.Sh BUILTIN COMMANDS
|
2002-07-14 15:19:46 +00:00
|
|
|
In
|
2002-08-13 15:06:48 +00:00
|
|
|
.Nm ,
|
2002-07-14 15:19:46 +00:00
|
|
|
builtin commands take parameters from the command line.
|
2000-06-22 08:37:22 +00:00
|
|
|
Presently,
|
1999-03-15 08:52:23 +00:00
|
|
|
the only way to call them from a script is by using
|
|
|
|
.Pa evaluate
|
2000-06-22 08:37:22 +00:00
|
|
|
on a string.
|
|
|
|
If an error condition occurs, an exception will be generated,
|
|
|
|
which can be intercepted using
|
1999-03-15 08:52:23 +00:00
|
|
|
.Tn ANS
|
|
|
|
Forth exception handling
|
2000-06-22 08:37:22 +00:00
|
|
|
words.
|
|
|
|
If not intercepted, an error message will be displayed and
|
1999-03-15 08:52:23 +00:00
|
|
|
the interpreter's state will be reset, emptying the stack and restoring
|
|
|
|
interpreting mode.
|
|
|
|
.Pp
|
|
|
|
The builtin commands available are:
|
|
|
|
.Pp
|
2000-12-27 16:37:32 +00:00
|
|
|
.Bl -tag -width Ds -compact
|
2004-10-01 00:15:13 +00:00
|
|
|
.It Ic autoboot Op Ar seconds Op Ar prompt
|
1999-03-15 08:52:23 +00:00
|
|
|
Proceeds to bootstrap the system after a number of seconds, if not
|
2000-06-22 08:37:22 +00:00
|
|
|
interrupted by the user.
|
|
|
|
Displays a countdown prompt
|
|
|
|
warning the user the system is about to be booted,
|
|
|
|
unless interrupted by a key press.
|
|
|
|
The kernel will be loaded first if necessary.
|
|
|
|
Defaults to 10 seconds.
|
1999-03-15 08:52:23 +00:00
|
|
|
.Pp
|
|
|
|
.It Ic bcachestat
|
2000-06-22 08:37:22 +00:00
|
|
|
Displays statistics about disk cache usage.
|
2006-10-13 20:48:17 +00:00
|
|
|
For debugging only.
|
1999-03-15 08:52:23 +00:00
|
|
|
.Pp
|
|
|
|
.It Ic boot
|
|
|
|
.It Ic boot Ar kernelname Op Cm ...
|
|
|
|
.It Ic boot Fl flag Cm ...
|
|
|
|
Immediately proceeds to bootstrap the system, loading the kernel
|
2000-06-22 08:37:22 +00:00
|
|
|
if necessary.
|
|
|
|
Any flags or arguments are passed to the kernel, but they
|
1999-03-15 08:52:23 +00:00
|
|
|
must precede the kernel name, if a kernel name is provided.
|
|
|
|
.Pp
|
2001-02-01 16:38:02 +00:00
|
|
|
.Em WARNING :
|
2000-09-08 21:39:31 +00:00
|
|
|
The behavior of this builtin is changed if
|
|
|
|
.Xr loader.4th 8
|
|
|
|
is loaded.
|
|
|
|
.Pp
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Ic echo Xo
|
|
|
|
.Op Fl n
|
|
|
|
.Op Aq message
|
|
|
|
.Xc
|
2003-05-04 08:23:24 +00:00
|
|
|
Displays text on the screen.
|
2000-06-22 08:37:22 +00:00
|
|
|
A new line will be printed unless
|
1999-03-15 08:52:23 +00:00
|
|
|
.Fl n
|
|
|
|
is specified.
|
|
|
|
.Pp
|
|
|
|
.It Ic heap
|
2000-06-22 08:37:22 +00:00
|
|
|
Displays memory usage statistics.
|
|
|
|
For debugging purposes only.
|
1999-03-15 08:52:23 +00:00
|
|
|
.Pp
|
|
|
|
.It Ic help Op topic Op subtopic
|
|
|
|
Shows help messages read from
|
|
|
|
.Pa /boot/loader.help .
|
|
|
|
The special topic
|
|
|
|
.Em index
|
|
|
|
will list the topics available.
|
|
|
|
.Pp
|
|
|
|
.It Ic include Ar file Op Ar
|
2000-06-22 08:37:22 +00:00
|
|
|
Process script files.
|
2003-05-04 08:23:24 +00:00
|
|
|
Each file, in turn, is completely read into memory,
|
|
|
|
and then each of its lines is passed to the command line interpreter.
|
2000-06-22 08:37:22 +00:00
|
|
|
If any error is returned by the interpreter, the include
|
2003-05-04 08:23:24 +00:00
|
|
|
command aborts immediately, without reading any other files, and
|
1999-03-15 08:52:23 +00:00
|
|
|
returns an error itself (see
|
|
|
|
.Sx ERRORS ) .
|
|
|
|
.Pp
|
|
|
|
.It Ic load Xo
|
|
|
|
.Op Fl t Ar type
|
|
|
|
.Ar file Cm ...
|
|
|
|
.Xc
|
2003-05-04 08:23:24 +00:00
|
|
|
Loads a kernel, kernel loadable module (kld), or file of opaque
|
1999-03-15 08:52:23 +00:00
|
|
|
contents tagged as being of the type
|
|
|
|
.Ar type .
|
2003-05-04 08:23:24 +00:00
|
|
|
Kernel and modules can be either in a.out or ELF format.
|
2000-06-22 08:37:22 +00:00
|
|
|
Any arguments passed after the name of the file to be loaded
|
|
|
|
will be passed as arguments to that file.
|
2003-05-04 08:23:24 +00:00
|
|
|
Currently, argument passing does not work for the kernel.
|
1999-03-15 08:52:23 +00:00
|
|
|
.Pp
|
2009-02-16 02:42:17 +00:00
|
|
|
.It Ic load_geli Xo
|
|
|
|
.Op Fl n Ar keyno
|
|
|
|
.Ar prov Ar file
|
|
|
|
.Xc
|
|
|
|
Loads a
|
|
|
|
.Xr geli 8
|
|
|
|
encryption keyfile for the given provider name.
|
|
|
|
The key index can be specified via
|
2012-03-29 05:02:12 +00:00
|
|
|
.Ar keyno
|
2009-02-16 02:42:17 +00:00
|
|
|
or will default to zero.
|
|
|
|
.Pp
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Ic ls Xo
|
|
|
|
.Op Fl l
|
|
|
|
.Op Ar path
|
|
|
|
.Xc
|
|
|
|
Displays a listing of files in the directory
|
|
|
|
.Ar path ,
|
2001-07-15 08:21:37 +00:00
|
|
|
or the root directory if
|
1999-03-15 08:52:23 +00:00
|
|
|
.Ar path
|
2000-06-22 08:37:22 +00:00
|
|
|
is not specified.
|
|
|
|
If
|
1999-03-15 08:52:23 +00:00
|
|
|
.Fl l
|
|
|
|
is specified, file sizes will be shown too.
|
|
|
|
.Pp
|
|
|
|
.It Ic lsdev Op Fl v
|
2000-06-22 08:37:22 +00:00
|
|
|
Lists all of the devices from which it may be possible to load modules.
|
|
|
|
If
|
1999-03-15 08:52:23 +00:00
|
|
|
.Fl v
|
|
|
|
is specified, more details are printed.
|
|
|
|
.Pp
|
|
|
|
.It Ic lsmod Op Fl v
|
2000-06-22 08:37:22 +00:00
|
|
|
Displays loaded modules.
|
|
|
|
If
|
1999-03-15 08:52:23 +00:00
|
|
|
.Fl v
|
|
|
|
is specified, more details are shown.
|
|
|
|
.Pp
|
|
|
|
.It Ic more Ar file Op Ar
|
|
|
|
Display the files specified, with a pause at each
|
|
|
|
.Va LINES
|
|
|
|
displayed.
|
|
|
|
.Pp
|
|
|
|
.It Ic pnpscan Op Fl v
|
2000-06-22 08:37:22 +00:00
|
|
|
Scans for Plug-and-Play devices.
|
2003-05-04 08:23:24 +00:00
|
|
|
This is not functional at present.
|
1999-03-15 08:52:23 +00:00
|
|
|
.Pp
|
|
|
|
.It Ic read Xo
|
|
|
|
.Op Fl t Ar seconds
|
|
|
|
.Op Fl p Ar prompt
|
|
|
|
.Op Va variable
|
|
|
|
.Xc
|
|
|
|
Reads a line of input from the terminal, storing it in
|
|
|
|
.Va variable
|
2000-06-22 08:37:22 +00:00
|
|
|
if specified.
|
|
|
|
A timeout can be specified with
|
1999-03-15 08:52:23 +00:00
|
|
|
.Fl t ,
|
2000-06-22 08:37:22 +00:00
|
|
|
though it will be canceled at the first key pressed.
|
|
|
|
A prompt may also be displayed through the
|
1999-03-15 08:52:23 +00:00
|
|
|
.Fl p
|
|
|
|
flag.
|
|
|
|
.Pp
|
|
|
|
.It Ic reboot
|
|
|
|
Immediately reboots the system.
|
|
|
|
.Pp
|
|
|
|
.It Ic set Ar variable
|
|
|
|
.It Ic set Ar variable Ns = Ns Ar value
|
|
|
|
Set loader's environment variables.
|
|
|
|
.Pp
|
|
|
|
.It Ic show Op Va variable
|
|
|
|
Displays the specified variable's value, or all variables and their
|
|
|
|
values if
|
|
|
|
.Va variable
|
|
|
|
is not specified.
|
|
|
|
.Pp
|
|
|
|
.It Ic unload
|
|
|
|
Remove all modules from memory.
|
|
|
|
.Pp
|
|
|
|
.It Ic unset Va variable
|
|
|
|
Removes
|
|
|
|
.Va variable
|
|
|
|
from the environment.
|
|
|
|
.Pp
|
|
|
|
.It Ic \&?
|
2004-09-30 12:16:23 +00:00
|
|
|
Lists available commands.
|
1999-03-15 08:52:23 +00:00
|
|
|
.El
|
|
|
|
.Ss BUILTIN ENVIRONMENT VARIABLES
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
has actually two different kinds of
|
|
|
|
.Sq environment
|
2000-06-22 08:37:22 +00:00
|
|
|
variables.
|
|
|
|
There are ANS Forth's
|
1999-03-15 08:52:23 +00:00
|
|
|
.Em environmental queries ,
|
|
|
|
and a separate space of environment variables used by builtins, which
|
2000-06-22 08:37:22 +00:00
|
|
|
are not directly available to Forth words.
|
2003-05-04 08:23:24 +00:00
|
|
|
It is the latter type that this section covers.
|
1999-03-15 08:52:23 +00:00
|
|
|
.Pp
|
2003-05-04 08:23:24 +00:00
|
|
|
Environment variables can be set and unset through the
|
1999-03-15 08:52:23 +00:00
|
|
|
.Ic set
|
|
|
|
and
|
|
|
|
.Ic unset
|
2003-05-04 08:23:24 +00:00
|
|
|
builtins, and can have their values interactively examined through the
|
1999-03-15 08:52:23 +00:00
|
|
|
use of the
|
|
|
|
.Ic show
|
2000-06-22 08:37:22 +00:00
|
|
|
builtin.
|
|
|
|
Their values can also be accessed as described in
|
1999-03-15 08:52:23 +00:00
|
|
|
.Sx BUILTIN PARSER .
|
|
|
|
.Pp
|
2001-12-03 06:00:24 +00:00
|
|
|
Notice that these environment variables are not inherited by any shell
|
1999-03-15 08:52:23 +00:00
|
|
|
after the system has been booted.
|
|
|
|
.Pp
|
|
|
|
A few variables are set automatically by
|
2000-11-20 17:05:46 +00:00
|
|
|
.Nm .
|
2003-05-04 08:23:24 +00:00
|
|
|
Others can affect the behavior of either
|
1999-03-15 08:52:23 +00:00
|
|
|
.Nm
|
2003-05-04 08:23:24 +00:00
|
|
|
or the kernel at boot.
|
|
|
|
Some options may require a value,
|
|
|
|
while others define behavior just by being set.
|
|
|
|
Both types of builtin variables are described below.
|
2000-12-27 16:37:32 +00:00
|
|
|
.Bl -tag -width bootfile
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Va autoboot_delay
|
|
|
|
Number of seconds
|
|
|
|
.Ic autoboot
|
2000-06-22 08:37:22 +00:00
|
|
|
will wait before booting.
|
|
|
|
If this variable is not defined,
|
1999-03-15 08:52:23 +00:00
|
|
|
.Ic autoboot
|
|
|
|
will default to 10 seconds.
|
|
|
|
.Pp
|
|
|
|
If set to
|
2005-06-14 08:49:14 +00:00
|
|
|
.Dq Li NO ,
|
1999-03-15 08:52:23 +00:00
|
|
|
no
|
|
|
|
.Ic autoboot
|
|
|
|
will be automatically attempted after processing
|
|
|
|
.Pa /boot/loader.rc ,
|
2002-05-29 22:57:18 +00:00
|
|
|
though explicit
|
1999-03-15 08:52:23 +00:00
|
|
|
.Ic autoboot Ns 's
|
|
|
|
will be processed normally, defaulting to 10 seconds delay.
|
2005-05-19 23:03:02 +00:00
|
|
|
.Pp
|
|
|
|
If set to
|
2005-06-14 08:49:14 +00:00
|
|
|
.Dq Li 0 ,
|
|
|
|
no delay will be inserted, but user still will be able to interrupt
|
2005-05-19 23:03:02 +00:00
|
|
|
.Ic autoboot
|
|
|
|
process and escape into the interactive mode by pressing some key
|
|
|
|
on the console while kernel and
|
|
|
|
modules are being loaded.
|
|
|
|
.Pp
|
|
|
|
If set to
|
2005-06-14 08:49:14 +00:00
|
|
|
.Dq Li -1 ,
|
|
|
|
no delay will be inserted and
|
2005-05-19 23:03:02 +00:00
|
|
|
.Nm
|
2005-06-14 08:49:14 +00:00
|
|
|
will engage interactive mode only if
|
2005-05-19 23:03:02 +00:00
|
|
|
.Ic autoboot
|
|
|
|
has failed for some reason.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Va boot_askname
|
|
|
|
Instructs the kernel to prompt the user for the name of the root device
|
|
|
|
when the kernel is booted.
|
2004-09-30 13:09:00 +00:00
|
|
|
.It Va boot_cdrom
|
|
|
|
Instructs the kernel to try to mount the root file system from CD-ROM.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Va boot_ddb
|
|
|
|
Instructs the kernel to start in the DDB debugger, rather than
|
2003-05-04 08:23:24 +00:00
|
|
|
proceeding to initialize when booted.
|
2005-09-22 15:06:58 +00:00
|
|
|
.It Va boot_dfltroot
|
|
|
|
Instructs the kernel to mount the statically compiled-in root file system.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Va boot_gdb
|
|
|
|
Selects gdb-remote mode for the kernel debugger by default.
|
2004-09-30 13:09:00 +00:00
|
|
|
.It Va boot_multicons
|
|
|
|
Enables multiple console support in the kernel early on boot.
|
|
|
|
In a running system, console configuration can be manipulated
|
|
|
|
by the
|
|
|
|
.Xr conscontrol 8
|
|
|
|
utility.
|
2005-09-22 15:06:58 +00:00
|
|
|
.It Va boot_mute
|
|
|
|
All console output is suppressed when console is muted.
|
|
|
|
In a running system, the state of console muting can be manipulated by the
|
|
|
|
.Xr conscontrol 8
|
|
|
|
utility.
|
|
|
|
.It Va boot_pause
|
|
|
|
During the device probe, pause after each line is printed.
|
2004-09-30 13:09:00 +00:00
|
|
|
.It Va boot_serial
|
|
|
|
Force the use of a serial console even when an internal console
|
|
|
|
is present.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Va boot_single
|
2004-09-30 13:09:00 +00:00
|
|
|
Prevents the kernel from initiating a multi-user startup; instead,
|
|
|
|
a single-user mode will be entered when the kernel has finished
|
|
|
|
device probing.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Va boot_verbose
|
|
|
|
Setting this variable causes extra debugging information to be printed
|
|
|
|
by the kernel during the boot phase.
|
|
|
|
.It Va bootfile
|
2000-06-22 08:37:22 +00:00
|
|
|
List of semicolon-separated search path for bootable kernels.
|
|
|
|
The default is
|
2004-09-30 14:06:03 +00:00
|
|
|
.Dq Li kernel .
|
2005-08-18 01:39:43 +00:00
|
|
|
.It Va comconsole_speed
|
|
|
|
Defines the speed of the serial console (i386 and amd64 only).
|
|
|
|
If the previous boot stage indicated that a serial console is in use
|
|
|
|
then this variable is initialized to the current speed of the console
|
|
|
|
serial port.
|
|
|
|
Otherwise it is set to 9600 unless this was overridden using the
|
|
|
|
.Va BOOT_COMCONSOLE_SPEED
|
|
|
|
variable when
|
|
|
|
.Nm
|
|
|
|
was compiled.
|
|
|
|
Changes to the
|
|
|
|
.Va comconsole_speed
|
|
|
|
variable take effect immediately.
|
2012-01-07 11:16:23 +00:00
|
|
|
.It Va comconsole_port
|
|
|
|
Defines the base i/o port used to access console UART
|
|
|
|
(i386 and amd64 only).
|
|
|
|
If the variable is not set, its assumed value is 0x3F8, which
|
2012-05-24 02:24:03 +00:00
|
|
|
corresponds to PC port COM1, unless overridden by
|
2012-01-07 11:16:23 +00:00
|
|
|
.Va BOOT_COMCONSOLE_PORT
|
|
|
|
variable during the compilation of
|
|
|
|
.Nm .
|
|
|
|
Setting the
|
|
|
|
.Va comconsole_port
|
|
|
|
variable automatically set
|
|
|
|
.Va hw.uart.console
|
|
|
|
environment variable to provide a hint to kernel for location of the console.
|
|
|
|
Loader console is changed immediately after variable
|
|
|
|
.Va comconsole_port
|
|
|
|
is set.
|
|
|
|
.It Va comconsole_pcidev
|
|
|
|
Defines the location of a PCI device of the 'simple communication'
|
|
|
|
class to be used as the serial console UART (i386 and amd64 only).
|
|
|
|
The syntax of the variable is
|
|
|
|
.Li 'bus:device:function[:bar]' ,
|
|
|
|
where all members must be numeric, with possible
|
|
|
|
.Li 0x
|
|
|
|
prefix to indicate a hexadecimal value.
|
|
|
|
The
|
|
|
|
.Va bar
|
|
|
|
member is optional and assumed to be 0x10 if omitted.
|
|
|
|
The bar must decode i/o space.
|
|
|
|
Setting the variable
|
|
|
|
.Va comconsole_pcidev
|
|
|
|
automatically sets the variable
|
|
|
|
.Va comconsole_port
|
|
|
|
to the base of the selected bar, and hint
|
|
|
|
.Va hw.uart.console .
|
|
|
|
Loader console is changed immediately after variable
|
|
|
|
.Va comconsole_pcidev
|
|
|
|
is set.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Va console
|
2005-05-27 19:31:00 +00:00
|
|
|
Defines the current console or consoles.
|
|
|
|
Multiple consoles may be specified.
|
|
|
|
In that case, the first listed console will become the default console for
|
2005-05-30 12:33:04 +00:00
|
|
|
userland output (e.g.\& from
|
|
|
|
.Xr init 8 ) .
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Va currdev
|
2000-06-22 08:37:22 +00:00
|
|
|
Selects the default device.
|
|
|
|
Syntax for devices is odd.
|
2007-02-04 06:35:10 +00:00
|
|
|
.It Va init_chroot
|
|
|
|
If set to a valid directory in the root file system, it causes
|
|
|
|
.Xr init 8
|
|
|
|
to perform a
|
|
|
|
.Xr chroot 2
|
|
|
|
operation on that directory, making it the new root directory.
|
|
|
|
That happens before entering single-user mode or multi-user
|
|
|
|
mode (but after executing the
|
|
|
|
.Va init_script
|
|
|
|
if enabled).
|
1999-04-20 21:15:13 +00:00
|
|
|
.It Va init_path
|
2003-05-04 08:23:24 +00:00
|
|
|
Sets the list of binaries which the kernel will try to run as the initial
|
2000-06-22 08:37:22 +00:00
|
|
|
process.
|
2003-05-04 08:23:24 +00:00
|
|
|
The first matching binary is used.
|
|
|
|
The default list is
|
2011-11-03 12:03:03 +00:00
|
|
|
.Dq Li /sbin/init:/sbin/oinit:/sbin/init.bak:\:/rescue/init .
|
2007-02-04 06:35:10 +00:00
|
|
|
.It Va init_script
|
|
|
|
If set to a valid file name in the root file system,
|
|
|
|
instructs
|
|
|
|
.Xr init 8
|
|
|
|
to run that script as the very first action,
|
|
|
|
before doing anything else.
|
|
|
|
Signal handling and exit code interpretation is similar to
|
|
|
|
running the
|
|
|
|
.Pa /etc/rc
|
|
|
|
script.
|
|
|
|
In particular, single-user operation is enforced
|
|
|
|
if the script terminates with a non-zero exit code,
|
|
|
|
or if a SIGTERM is delivered to the
|
|
|
|
.Xr init 8
|
|
|
|
process (PID 1).
|
2008-12-06 11:21:10 +00:00
|
|
|
.It Va init_shell
|
2007-02-04 06:35:10 +00:00
|
|
|
Defines the shell binary to be used for executing the various shell scripts.
|
|
|
|
The default is
|
|
|
|
.Dq Li /bin/sh .
|
|
|
|
It is used for running the
|
|
|
|
.Va init_script
|
|
|
|
if set, as well as for the
|
|
|
|
.Pa /etc/rc
|
|
|
|
and
|
|
|
|
.Pa /etc/rc.shutdown
|
|
|
|
scripts.
|
|
|
|
The value of the corresponding
|
|
|
|
.Xr kenv 2
|
|
|
|
variable is evaluated every time
|
|
|
|
.Xr init 8
|
|
|
|
calls a shell script, so it can be changed later on using the
|
|
|
|
.Xr kenv 1
|
|
|
|
utility.
|
|
|
|
In particular, if a non-default shell is used for running an
|
|
|
|
.Va init_script ,
|
|
|
|
it might be desirable to have that script reset the value of
|
|
|
|
.Va init_shell
|
|
|
|
back to the default, so that the
|
|
|
|
.Pa /etc/rc
|
|
|
|
script is executed with the standard shell
|
|
|
|
.Pa /bin/sh .
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Va interpret
|
2001-07-15 08:21:37 +00:00
|
|
|
Has the value
|
2004-09-30 17:12:05 +00:00
|
|
|
.Dq Li OK
|
1999-03-15 08:52:23 +00:00
|
|
|
if the Forth's current state is interpreting.
|
|
|
|
.It Va LINES
|
|
|
|
Define the number of lines on the screen, to be used by the pager.
|
|
|
|
.It Va module_path
|
2003-05-04 08:23:24 +00:00
|
|
|
Sets the list of directories which will be searched for modules
|
2002-05-29 22:57:18 +00:00
|
|
|
named in a load command or implicitly required by a dependency.
|
2000-06-22 08:37:22 +00:00
|
|
|
The default value for this variable is
|
2003-03-03 22:53:35 +00:00
|
|
|
.Dq Li /boot/kernel;/boot/modules .
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Va num_ide_disks
|
2003-05-04 08:23:24 +00:00
|
|
|
Sets the number of IDE disks as a workaround for some problems in
|
2000-06-22 08:37:22 +00:00
|
|
|
finding the root disk at boot.
|
2002-05-29 22:57:18 +00:00
|
|
|
This has been deprecated in favor of
|
1999-03-15 08:52:23 +00:00
|
|
|
.Va root_disk_unit .
|
|
|
|
.It Va prompt
|
|
|
|
Value of
|
2000-11-20 17:05:46 +00:00
|
|
|
.Nm Ns 's
|
2000-06-22 08:37:22 +00:00
|
|
|
prompt.
|
|
|
|
Defaults to
|
2004-09-30 17:11:26 +00:00
|
|
|
.Dq Li "${interpret}" .
|
|
|
|
If variable
|
|
|
|
.Va prompt
|
|
|
|
is unset, the default prompt is
|
|
|
|
.Ql > .
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Va root_disk_unit
|
|
|
|
If the code which detects the disk unit number for the root disk is
|
2004-07-07 19:57:16 +00:00
|
|
|
confused, e.g.\& by a mix of SCSI and IDE disks, or IDE disks with
|
|
|
|
gaps in the sequence (e.g.\& no primary slave), the unit number can
|
1999-03-15 08:52:23 +00:00
|
|
|
be forced by setting this variable.
|
|
|
|
.It Va rootdev
|
|
|
|
By default the value of
|
|
|
|
.Va currdev
|
2002-12-12 17:26:04 +00:00
|
|
|
is used to set the root file system
|
2000-06-22 08:37:22 +00:00
|
|
|
when the kernel is booted.
|
|
|
|
This can be overridden by setting
|
1999-03-15 08:52:23 +00:00
|
|
|
.Va rootdev
|
|
|
|
explicitly.
|
|
|
|
.El
|
|
|
|
.Pp
|
2000-06-25 07:12:03 +00:00
|
|
|
Other variables are used to override kernel tunable parameters.
|
1999-03-15 08:52:23 +00:00
|
|
|
The following tunables are available:
|
2000-12-27 16:37:32 +00:00
|
|
|
.Bl -tag -width Va
|
2002-02-21 05:15:52 +00:00
|
|
|
.It Va hw.physmem
|
2002-03-15 15:12:10 +00:00
|
|
|
Limit the amount of physical memory the system will use.
|
|
|
|
By default the size is in bytes, but the
|
|
|
|
.Cm k , K , m , M , g
|
|
|
|
and
|
|
|
|
.Cm G
|
|
|
|
suffixes
|
2002-02-21 05:15:52 +00:00
|
|
|
are also accepted and indicate kilobytes, megabytes and gigabytes
|
|
|
|
respectively.
|
|
|
|
An invalid suffix will result in the variable being ignored by the
|
|
|
|
kernel.
|
2004-10-15 06:44:13 +00:00
|
|
|
.It Va hw.pci.host_start_mem , hw.acpi.host_start_mem
|
2004-10-15 00:15:07 +00:00
|
|
|
When not otherwise constrained, this limits the memory start
|
|
|
|
address.
|
|
|
|
The default is 0x80000000 and should be set to at least size of the
|
|
|
|
memory and not conflict with other resources.
|
2004-10-15 06:44:13 +00:00
|
|
|
Typically, only systems without PCI bridges need to set this variable
|
|
|
|
since PCI bridges typically constrain the memory starting address
|
|
|
|
(and the variable is only used when bridges do not constrain this
|
2004-10-15 00:15:07 +00:00
|
|
|
address).
|
2002-11-13 09:43:53 +00:00
|
|
|
.It Va hw.pci.enable_io_modes
|
|
|
|
Enable PCI resources which are left off by some BIOSes or are not
|
|
|
|
enabled correctly by the device driver.
|
|
|
|
Tunable value set to ON (1) by default, but this may cause problems
|
|
|
|
with some peripherals.
|
2001-12-07 18:05:24 +00:00
|
|
|
.It Va kern.maxusers
|
|
|
|
Set the size of a number of statically allocated system tables; see
|
|
|
|
.Xr tuning 7
|
|
|
|
for a description of how to select an appropriate value for this
|
|
|
|
tunable.
|
|
|
|
When set, this tunable replaces the value declared in the kernel
|
|
|
|
compile-time configuration file.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Va kern.ipc.nmbclusters
|
2000-06-22 08:37:22 +00:00
|
|
|
Set the number of mbuf clusters to be allocated.
|
|
|
|
The value cannot be set below the default
|
|
|
|
determined when the kernel was compiled.
|
2003-03-04 23:46:29 +00:00
|
|
|
.It Va kern.ipc.nsfbufs
|
2003-05-17 22:17:23 +00:00
|
|
|
Set the number of
|
|
|
|
.Xr sendfile 2
|
|
|
|
buffers to be allocated.
|
|
|
|
Overrides
|
|
|
|
.Dv NSFBUFS .
|
2006-11-29 05:53:25 +00:00
|
|
|
Not all architectures use such buffers; see
|
|
|
|
.Xr sendfile 2
|
|
|
|
for details.
|
2001-08-20 00:41:12 +00:00
|
|
|
.It Va kern.maxswzone
|
|
|
|
Limits the amount of KVM to be used to hold swap
|
2012-08-14 17:01:21 +00:00
|
|
|
metadata, which directly governs the
|
|
|
|
maximum amount of swap the system can support,
|
|
|
|
at the rate of approximately 200 MB of swap space
|
|
|
|
per 1 MB of metadata.
|
|
|
|
This value is specified in bytes of KVA space.
|
|
|
|
If no value is provided, the system allocates
|
|
|
|
enough memory to handle an amount of swap
|
|
|
|
that corresponds to eight times the amount of
|
|
|
|
physical memory present in the system.
|
|
|
|
.Pp
|
|
|
|
Note that swap metadata can be fragmented,
|
|
|
|
which means that the system can run out of
|
|
|
|
space before it reaches the theoretical limit.
|
|
|
|
Therefore, care should be taken to not configure
|
|
|
|
more swap than approximately half of the
|
|
|
|
theoretical maximum.
|
|
|
|
.Pp
|
|
|
|
Running out of space for swap metadata can leave
|
|
|
|
the system in an unrecoverable state.
|
|
|
|
Therefore, you should only change
|
2001-08-20 00:41:12 +00:00
|
|
|
this parameter if you need to greatly extend the
|
|
|
|
KVM reservation for other resources such as the
|
2001-08-20 08:55:07 +00:00
|
|
|
buffer cache or
|
2006-08-18 10:15:01 +00:00
|
|
|
.Va kern.ipc.nmbclusters .
|
2007-05-05 17:36:42 +00:00
|
|
|
Modifies kernel option
|
2004-05-16 22:51:36 +00:00
|
|
|
.Dv VM_SWZONE_SIZE_MAX .
|
2001-08-20 00:41:12 +00:00
|
|
|
.It Va kern.maxbcache
|
|
|
|
Limits the amount of KVM reserved for use by the
|
2001-08-20 08:55:07 +00:00
|
|
|
buffer cache, specified in bytes.
|
2007-11-08 11:59:38 +00:00
|
|
|
The default maximum is 200MB on i386,
|
2011-05-14 01:53:38 +00:00
|
|
|
and 400MB on amd64 and sparc64.
|
2001-08-20 08:55:07 +00:00
|
|
|
This parameter is used to
|
2001-10-01 23:41:13 +00:00
|
|
|
prevent the buffer cache from eating too much
|
2001-08-20 00:41:12 +00:00
|
|
|
KVM in large-memory machine configurations.
|
|
|
|
Only mess around with this parameter if you need to
|
|
|
|
greatly extend the KVM reservation for other resources
|
2001-08-20 08:55:07 +00:00
|
|
|
such as the swap zone or
|
2006-08-18 10:15:01 +00:00
|
|
|
.Va kern.ipc.nmbclusters .
|
2001-08-20 08:55:07 +00:00
|
|
|
Note that
|
2001-08-20 00:41:12 +00:00
|
|
|
the NBUF parameter will override this limit.
|
|
|
|
Modifies
|
2004-05-16 22:51:36 +00:00
|
|
|
.Dv VM_BCACHE_SIZE_MAX .
|
2011-01-21 10:26:26 +00:00
|
|
|
.It Va kern.msgbufsize
|
|
|
|
Sets the size of the kernel message buffer.
|
|
|
|
The default limit of 64KB is usually sufficient unless
|
|
|
|
large amounts of trace data need to be collected
|
|
|
|
between opportunities to examine the buffer or
|
|
|
|
dump it to a file.
|
|
|
|
Overrides kernel option
|
|
|
|
.Dv MSGBUF_SIZE .
|
2002-11-13 09:37:43 +00:00
|
|
|
.It Va machdep.disable_mtrrs
|
|
|
|
Disable the use of i686 MTRRs (x86 only).
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Va net.inet.tcp.tcbhashsize
|
|
|
|
Overrides the compile-time set value of
|
2004-05-16 22:51:36 +00:00
|
|
|
.Dv TCBHASHSIZE
|
2000-06-22 08:37:22 +00:00
|
|
|
or the preset default of 512.
|
|
|
|
Must be a power of 2.
|
2004-01-27 15:59:38 +00:00
|
|
|
.It Va vm.kmem_size
|
|
|
|
Sets the size of kernel memory (bytes).
|
|
|
|
This overrides the value determined when the kernel was compiled.
|
|
|
|
Modifies
|
2004-05-16 22:51:36 +00:00
|
|
|
.Dv VM_KMEM_SIZE .
|
2007-05-09 02:37:58 +00:00
|
|
|
.It Va vm.kmem_size_min
|
|
|
|
.It Va vm.kmem_size_max
|
|
|
|
Sets the minimum and maximum (respectively) amount of kernel memory
|
|
|
|
that will be automatically allocated by the kernel.
|
|
|
|
These override the values determined when the kernel was compiled.
|
|
|
|
Modifies
|
|
|
|
.Dv VM_KMEM_SIZE_MIN
|
|
|
|
and
|
|
|
|
.Dv VM_KMEM_SIZE_MAX .
|
2004-04-03 12:14:30 +00:00
|
|
|
.El
|
1999-03-15 08:52:23 +00:00
|
|
|
.Ss BUILTIN PARSER
|
|
|
|
When a builtin command is executed, the rest of the line is taken
|
1999-07-28 20:30:59 +00:00
|
|
|
by it as arguments, and it is processed by a special parser which
|
1999-03-15 08:52:23 +00:00
|
|
|
is not used for regular Forth commands.
|
|
|
|
.Pp
|
|
|
|
This special parser applies the following rules to the parsed text:
|
|
|
|
.Bl -enum
|
|
|
|
.It
|
|
|
|
All backslash characters are preprocessed.
|
|
|
|
.Bl -bullet
|
|
|
|
.It
|
2000-06-25 07:12:03 +00:00
|
|
|
\eb , \ef , \er , \en and \et are processed as in C.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It
|
|
|
|
\es is converted to a space.
|
|
|
|
.It
|
|
|
|
\ev is converted to
|
|
|
|
.Tn ASCII
|
|
|
|
11.
|
|
|
|
.It
|
2000-06-22 08:37:22 +00:00
|
|
|
\ez is just skipped.
|
|
|
|
Useful for things like
|
1999-04-25 21:41:09 +00:00
|
|
|
.Dq \e0xf\ez\e0xf .
|
1999-03-15 08:52:23 +00:00
|
|
|
.It
|
1999-04-25 21:41:09 +00:00
|
|
|
\e0xN and \e0xNN are replaced by the hex N or NN.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It
|
|
|
|
\eNNN is replaced by the octal NNN
|
|
|
|
.Tn ASCII
|
|
|
|
character.
|
|
|
|
.It
|
|
|
|
\e" , \e' and \e$ will escape these characters, preventing them from
|
2003-05-04 08:23:24 +00:00
|
|
|
receiving special treatment in Step 2, described below.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It
|
|
|
|
\e\e will be replaced with a single \e .
|
|
|
|
.It
|
2002-05-29 22:57:18 +00:00
|
|
|
In any other occurrence, backslash will just be removed.
|
1999-03-15 08:52:23 +00:00
|
|
|
.El
|
|
|
|
.It
|
|
|
|
Every string between non-escaped quotes or double-quotes will be treated
|
|
|
|
as a single word for the purposes of the remaining steps.
|
|
|
|
.It
|
|
|
|
Replace any
|
|
|
|
.Li $VARIABLE
|
|
|
|
or
|
|
|
|
.Li ${VARIABLE}
|
2002-05-29 22:57:18 +00:00
|
|
|
with the value of the environment variable
|
1999-03-15 08:52:23 +00:00
|
|
|
.Va VARIABLE .
|
|
|
|
.It
|
2003-05-04 08:23:24 +00:00
|
|
|
Space-delimited arguments are passed to the called builtin command.
|
1999-03-15 08:52:23 +00:00
|
|
|
Spaces can also be escaped through the use of \e\e .
|
|
|
|
.El
|
|
|
|
.Pp
|
|
|
|
An exception to this parsing rule exists, and is described in
|
|
|
|
.Sx BUILTINS AND FORTH .
|
|
|
|
.Ss BUILTINS AND FORTH
|
2000-06-22 08:37:22 +00:00
|
|
|
All builtin words are state-smart, immediate words.
|
|
|
|
If interpreted, they behave exactly as described previously.
|
|
|
|
If they are compiled, though,
|
1999-03-15 08:52:23 +00:00
|
|
|
they extract their arguments from the stack instead of the command line.
|
|
|
|
.Pp
|
|
|
|
If compiled, the builtin words expect to find, at execution time, the
|
|
|
|
following parameters on the stack:
|
|
|
|
.D1 Ar addrN lenN ... addr2 len2 addr1 len1 N
|
|
|
|
where
|
|
|
|
.Ar addrX lenX
|
|
|
|
are strings which will compose the command line that will be parsed
|
2000-06-22 08:37:22 +00:00
|
|
|
into the builtin's arguments.
|
|
|
|
Internally, these strings are concatenated in from 1 to N,
|
|
|
|
with a space put between each one.
|
1999-03-15 08:52:23 +00:00
|
|
|
.Pp
|
|
|
|
If no arguments are passed, a 0
|
|
|
|
.Em must
|
|
|
|
be passed, even if the builtin accepts no arguments.
|
|
|
|
.Pp
|
2000-06-22 08:37:22 +00:00
|
|
|
While this behavior has benefits, it has its trade-offs.
|
|
|
|
If the execution token of a builtin is acquired (through
|
2001-02-28 17:38:53 +00:00
|
|
|
.Ic '
|
1999-03-15 08:52:23 +00:00
|
|
|
or
|
2001-02-28 17:38:53 +00:00
|
|
|
.Ic ['] ) ,
|
1999-03-15 08:52:23 +00:00
|
|
|
and then passed to
|
|
|
|
.Ic catch
|
|
|
|
or
|
|
|
|
.Ic execute ,
|
|
|
|
the builtin behavior will depend on the system state
|
|
|
|
.Bf Em
|
|
|
|
at the time
|
|
|
|
.Ic catch
|
|
|
|
or
|
|
|
|
.Ic execute
|
2004-07-02 21:49:22 +00:00
|
|
|
is processed!
|
1999-03-15 08:52:23 +00:00
|
|
|
.Ef
|
2004-07-02 21:49:22 +00:00
|
|
|
This is particularly annoying for programs that want or need to
|
2003-05-04 08:23:24 +00:00
|
|
|
handle exceptions.
|
|
|
|
In this case, the use of a proxy is recommended.
|
1999-03-15 08:52:23 +00:00
|
|
|
For example:
|
|
|
|
.Dl : (boot) boot ;
|
|
|
|
.Sh FICL
|
|
|
|
.Tn FICL
|
|
|
|
is a Forth interpreter written in C, in the form of a forth
|
|
|
|
virtual machine library that can be called by C functions and vice
|
|
|
|
versa.
|
|
|
|
.Pp
|
|
|
|
In
|
2002-08-13 15:06:48 +00:00
|
|
|
.Nm ,
|
1999-03-15 08:52:23 +00:00
|
|
|
each line read interactively is then fed to
|
|
|
|
.Tn FICL ,
|
|
|
|
which may call
|
|
|
|
.Nm
|
2000-06-22 08:37:22 +00:00
|
|
|
back to execute the builtin words.
|
|
|
|
The builtin
|
1999-03-15 08:52:23 +00:00
|
|
|
.Ic include
|
|
|
|
will also feed
|
|
|
|
.Tn FICL ,
|
|
|
|
one line at a time.
|
|
|
|
.Pp
|
|
|
|
The words available to
|
|
|
|
.Tn FICL
|
2003-05-04 08:23:24 +00:00
|
|
|
can be classified into four groups.
|
2000-06-22 08:37:22 +00:00
|
|
|
The
|
1999-03-15 08:52:23 +00:00
|
|
|
.Tn ANS
|
|
|
|
Forth standard words, extra
|
|
|
|
.Tn FICL
|
|
|
|
words, extra
|
2000-12-14 12:48:07 +00:00
|
|
|
.Fx
|
2003-05-04 08:23:24 +00:00
|
|
|
words, and the builtin commands;
|
|
|
|
the latter were already described.
|
2000-06-22 08:37:22 +00:00
|
|
|
The
|
1999-03-15 08:52:23 +00:00
|
|
|
.Tn ANS
|
|
|
|
Forth standard words are listed in the
|
|
|
|
.Sx STANDARDS
|
2000-06-22 08:37:22 +00:00
|
|
|
section.
|
|
|
|
The words falling in the two other groups are described in the
|
1999-03-15 08:52:23 +00:00
|
|
|
following subsections.
|
|
|
|
.Ss FICL EXTRA WORDS
|
2000-12-27 16:37:32 +00:00
|
|
|
.Bl -tag -width wid-set-super
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Ic .env
|
|
|
|
.It Ic .ver
|
|
|
|
.It Ic -roll
|
|
|
|
.It Ic 2constant
|
|
|
|
.It Ic >name
|
|
|
|
.It Ic body>
|
|
|
|
.It Ic compare
|
2000-08-11 10:32:23 +00:00
|
|
|
This is the STRING word set's
|
1999-03-15 08:52:23 +00:00
|
|
|
.Ic compare .
|
|
|
|
.It Ic compile-only
|
|
|
|
.It Ic endif
|
|
|
|
.It Ic forget-wid
|
|
|
|
.It Ic parse-word
|
|
|
|
.It Ic sliteral
|
|
|
|
This is the STRING word set's
|
|
|
|
.Ic sliteral .
|
|
|
|
.It Ic wid-set-super
|
|
|
|
.It Ic w@
|
|
|
|
.It Ic w!
|
|
|
|
.It Ic x.
|
|
|
|
.It Ic empty
|
|
|
|
.It Ic cell-
|
|
|
|
.It Ic -rot
|
|
|
|
.El
|
|
|
|
.Ss FREEBSD EXTRA WORDS
|
2000-12-27 16:37:32 +00:00
|
|
|
.Bl -tag -width XXXXXXXX
|
2000-05-04 21:22:55 +00:00
|
|
|
.It Ic \&$ Pq --
|
|
|
|
Evaluates the remainder of the input buffer, after having printed it first.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Ic \&% Pq --
|
|
|
|
Evaluates the remainder of the input buffer under a
|
|
|
|
.Ic catch
|
|
|
|
exception guard.
|
2000-05-23 11:47:23 +00:00
|
|
|
.It Ic .#
|
|
|
|
Works like
|
2010-08-02 13:11:35 +00:00
|
|
|
.Ic "."
|
2000-05-23 11:47:23 +00:00
|
|
|
but without outputting a trailing space.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Ic fclose Pq Ar fd --
|
|
|
|
Closes a file.
|
2000-05-04 21:18:26 +00:00
|
|
|
.It Ic fkey Pq Ar fd -- char
|
|
|
|
Reads a single character from a file.
|
|
|
|
.It Ic fload Pq Ar fd --
|
2003-05-04 08:23:24 +00:00
|
|
|
Processes a file
|
2000-05-04 21:18:26 +00:00
|
|
|
.Em fd .
|
2001-12-11 00:49:34 +00:00
|
|
|
.It Ic fopen Pq Ar addr len mode Li -- Ar fd
|
2003-05-04 08:23:24 +00:00
|
|
|
Opens a file.
|
2001-12-14 09:06:11 +00:00
|
|
|
Returns a file descriptor, or \-1 in case of failure.
|
|
|
|
The
|
2001-12-11 00:49:34 +00:00
|
|
|
.Ar mode
|
|
|
|
parameter selects whether the file is to be opened for read access, write
|
|
|
|
access, or both.
|
|
|
|
The constants
|
|
|
|
.Dv O_RDONLY , O_WRONLY ,
|
|
|
|
and
|
|
|
|
.Dv O_RDWR
|
|
|
|
are defined in
|
|
|
|
.Pa /boot/support.4th ,
|
|
|
|
indicating read only, write only, and read-write access, respectively.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Xo
|
|
|
|
.Ic fread
|
|
|
|
.Pq Ar fd addr len -- len'
|
|
|
|
.Xc
|
|
|
|
Tries to read
|
|
|
|
.Em len
|
|
|
|
bytes from file
|
|
|
|
.Em fd
|
|
|
|
into buffer
|
|
|
|
.Em addr .
|
|
|
|
Returns the actual number of bytes read, or -1 in case of error or end of
|
|
|
|
file.
|
2000-05-04 22:51:21 +00:00
|
|
|
.It Ic heap? Pq -- Ar cells
|
|
|
|
Return the space remaining in the dictionary heap, in cells.
|
2000-05-04 21:26:26 +00:00
|
|
|
This is not related to the heap used by dynamic memory allocation words.
|
2000-05-04 21:22:55 +00:00
|
|
|
.It Ic inb Pq Ar port -- char
|
|
|
|
Reads a byte from a port.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Ic key Pq -- Ar char
|
|
|
|
Reads a single character from the console.
|
|
|
|
.It Ic key? Pq -- Ar flag
|
|
|
|
Returns
|
|
|
|
.Ic true
|
|
|
|
if there is a character available to be read from the console.
|
|
|
|
.It Ic ms Pq Ar u --
|
|
|
|
Waits
|
|
|
|
.Em u
|
|
|
|
microseconds.
|
2000-05-04 21:18:26 +00:00
|
|
|
.It Ic outb Pq Ar port char --
|
|
|
|
Writes a byte to a port.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Ic seconds Pq -- Ar u
|
|
|
|
Returns the number of seconds since midnight.
|
2000-05-04 21:18:26 +00:00
|
|
|
.It Ic tib> Pq -- Ar addr len
|
|
|
|
Returns the remainder of the input buffer as a string on the stack.
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Ic trace! Pq Ar flag --
|
2000-06-22 08:37:22 +00:00
|
|
|
Activates or deactivates tracing.
|
|
|
|
Does not work with
|
1999-03-15 08:52:23 +00:00
|
|
|
.Ic catch .
|
|
|
|
.El
|
|
|
|
.Ss FREEBSD DEFINED ENVIRONMENTAL QUERIES
|
2000-12-27 16:37:32 +00:00
|
|
|
.Bl -tag -width Ds
|
1999-03-15 08:52:23 +00:00
|
|
|
.It arch-i386
|
|
|
|
.Ic TRUE
|
|
|
|
if the architecture is IA32.
|
|
|
|
.It FreeBSD_version
|
|
|
|
.Fx
|
|
|
|
version at compile time.
|
|
|
|
.It loader_version
|
|
|
|
.Nm
|
|
|
|
version.
|
|
|
|
.El
|
|
|
|
.Ss SYSTEM DOCUMENTATION
|
|
|
|
.Sh FILES
|
2000-12-27 16:37:32 +00:00
|
|
|
.Bl -tag -width /boot/defaults/loader.conf -compact
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Pa /boot/loader
|
|
|
|
.Nm
|
|
|
|
itself.
|
|
|
|
.It Pa /boot/boot.4th
|
|
|
|
Additional
|
|
|
|
.Tn FICL
|
|
|
|
initialization.
|
|
|
|
.It Pa /boot/boot.conf
|
|
|
|
.Nm
|
2000-06-22 08:37:22 +00:00
|
|
|
bootstrapping script.
|
|
|
|
Deprecated.
|
2000-08-24 08:00:29 +00:00
|
|
|
.It Pa /boot/defaults/loader.conf
|
|
|
|
.It Pa /boot/loader.conf
|
|
|
|
.It Pa /boot/loader.conf.local
|
|
|
|
.Nm
|
|
|
|
configuration files, as described in
|
|
|
|
.Xr loader.conf 5 .
|
1999-03-15 08:52:23 +00:00
|
|
|
.It Pa /boot/loader.rc
|
|
|
|
.Nm
|
|
|
|
bootstrapping script.
|
|
|
|
.It Pa /boot/loader.help
|
|
|
|
Loaded by
|
|
|
|
.Ic help .
|
|
|
|
Contains the help messages.
|
|
|
|
.El
|
|
|
|
.Sh EXAMPLES
|
|
|
|
Boot in single user mode:
|
|
|
|
.Pp
|
|
|
|
.Dl boot -s
|
|
|
|
.Pp
|
2004-09-30 18:23:35 +00:00
|
|
|
Load the kernel, a splash screen, and then autoboot in five seconds.
|
2000-06-22 08:37:22 +00:00
|
|
|
Notice that a kernel must be loaded before any other
|
1999-03-15 08:52:23 +00:00
|
|
|
.Ic load
|
|
|
|
command is attempted.
|
2000-12-27 16:37:32 +00:00
|
|
|
.Bd -literal -offset indent
|
1999-03-15 08:52:23 +00:00
|
|
|
load kernel
|
|
|
|
load splash_bmp
|
|
|
|
load -t splash_image_data /boot/chuckrulez.bmp
|
|
|
|
autoboot 5
|
|
|
|
.Ed
|
|
|
|
.Pp
|
2003-05-04 08:23:24 +00:00
|
|
|
Set the disk unit of the root device to 2, and then boot.
|
|
|
|
This would be needed in a system with two IDE disks,
|
2011-12-27 15:59:51 +00:00
|
|
|
with the second IDE disk hardwired to ad2 instead of ad1.
|
2000-12-27 16:37:32 +00:00
|
|
|
.Bd -literal -offset indent
|
1999-03-15 08:52:23 +00:00
|
|
|
set root_disk_unit=2
|
2011-12-27 15:59:51 +00:00
|
|
|
boot /boot/kernel/kernel
|
1999-03-15 08:52:23 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
See also:
|
|
|
|
.Bl -tag -width /usr/share/examples/bootforth/X
|
|
|
|
.It Pa /boot/loader.4th
|
|
|
|
Extra builtin-like words.
|
|
|
|
.It Pa /boot/support.4th
|
|
|
|
.Pa loader.conf
|
|
|
|
processing words.
|
|
|
|
.It Pa /usr/share/examples/bootforth/
|
|
|
|
Assorted examples.
|
|
|
|
.El
|
|
|
|
.Sh ERRORS
|
|
|
|
The following values are thrown by
|
|
|
|
.Nm :
|
|
|
|
.Bl -tag -width XXXXX -offset indent
|
|
|
|
.It 100
|
|
|
|
Any type of error in the processing of a builtin.
|
|
|
|
.It -1
|
|
|
|
.Ic Abort
|
|
|
|
executed.
|
|
|
|
.It -2
|
|
|
|
.Ic Abort"
|
|
|
|
executed.
|
|
|
|
.It -56
|
|
|
|
.Ic Quit
|
|
|
|
executed.
|
|
|
|
.It -256
|
|
|
|
Out of interpreting text.
|
|
|
|
.It -257
|
|
|
|
Need more text to succeed -- will finish on next run.
|
|
|
|
.It -258
|
|
|
|
.Ic Bye
|
|
|
|
executed.
|
|
|
|
.It -259
|
|
|
|
Unspecified error.
|
|
|
|
.El
|
|
|
|
.Sh SEE ALSO
|
|
|
|
.Xr libstand 3 ,
|
|
|
|
.Xr loader.conf 5 ,
|
2001-12-07 18:05:24 +00:00
|
|
|
.Xr tuning 7 ,
|
1999-03-15 08:52:23 +00:00
|
|
|
.Xr boot 8 ,
|
|
|
|
.Xr btxld 8
|
|
|
|
.Sh STANDARDS
|
|
|
|
For the purposes of ANS Forth compliance, loader is an
|
|
|
|
.Bf Em
|
|
|
|
ANS Forth System with Environmental Restrictions, Providing
|
|
|
|
.Ef
|
|
|
|
.Bf Li
|
|
|
|
.No .( ,
|
|
|
|
.No :noname ,
|
|
|
|
.No ?do ,
|
|
|
|
parse, pick, roll, refill, to, value, \e, false, true,
|
|
|
|
.No <> ,
|
|
|
|
.No 0<> ,
|
|
|
|
compile\&, , erase, nip, tuck
|
|
|
|
.Ef
|
|
|
|
.Em and
|
|
|
|
.Li marker
|
|
|
|
.Bf Em
|
|
|
|
from the Core Extensions word set, Providing the Exception Extensions
|
|
|
|
word set, Providing the Locals Extensions word set, Providing the
|
|
|
|
Memory-Allocation Extensions word set, Providing
|
|
|
|
.Ef
|
|
|
|
.Bf Li
|
2001-08-10 17:35:21 +00:00
|
|
|
\&.s,
|
1999-03-15 08:52:23 +00:00
|
|
|
bye, forget, see, words,
|
2001-08-10 17:35:21 +00:00
|
|
|
\&[if],
|
1999-03-15 08:52:23 +00:00
|
|
|
\&[else]
|
|
|
|
.Ef
|
|
|
|
.Em and
|
2001-02-28 17:38:53 +00:00
|
|
|
.Li [then]
|
1999-03-15 08:52:23 +00:00
|
|
|
.Bf Em
|
|
|
|
from the Programming-Tools extension word set, Providing the
|
|
|
|
Search-Order extensions word set.
|
|
|
|
.Ef
|
|
|
|
.Sh HISTORY
|
2002-07-14 15:19:46 +00:00
|
|
|
The
|
1999-03-15 08:52:23 +00:00
|
|
|
.Nm
|
|
|
|
first appeared in
|
|
|
|
.Fx 3.1 .
|
|
|
|
.Sh AUTHORS
|
2000-11-22 09:35:58 +00:00
|
|
|
.An -nosplit
|
2002-07-14 15:19:46 +00:00
|
|
|
The
|
1999-03-15 08:52:23 +00:00
|
|
|
.Nm
|
|
|
|
was written by
|
2000-11-22 09:35:58 +00:00
|
|
|
.An Michael Smith Aq msmith@FreeBSD.org .
|
|
|
|
.Pp
|
1999-03-15 08:52:23 +00:00
|
|
|
.Tn FICL
|
|
|
|
was written by
|
|
|
|
.An John Sadler Aq john_sadler@alum.mit.edu .
|
|
|
|
.Sh BUGS
|
|
|
|
The
|
|
|
|
.Ic expect
|
|
|
|
and
|
|
|
|
.Ic accept
|
2000-06-22 08:37:22 +00:00
|
|
|
words will read from the input buffer instead of the console.
|
|
|
|
The latter will be fixed, but the former will not.
|