loader: rename zfsloader to loader
[unleashed.git] / share / man / man5 / version.4th.5
blob3082e01bf708a7853a590231cf0a301272879008
1 .\" Copyright (c) 2011-2013 Devin Teske
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 .Dd July 20, 2018
26 .Dt VERSION.4TH 5
27 .Os
28 .Sh NAME
29 .Nm version.4th
30 .Nd loader version string boot module
31 .Sh DESCRIPTION
32 The file that goes by the name of
33 .Nm
34 is a set of commands designed to draw the boot loader
35 version at the bottom-right of the screen.
36 The commands of
37 .Nm
38 by themselves are not enough for most uses.
39 Please refer to the
40 examples below for the most common situations, and to
41 .Xr loader 5
42 for additional commands.
43 .Pp
44 Before using any of the commands provided in
45 .Nm ,
46 it must be included
47 through the command:
48 .Pp
49 .Dl include version.4th
50 .Pp
51 This line is present in the default
52 .Pa /boot/forth/menu.rc
53 file, so it is not needed (and should not be re-issued) in a normal setup.
54 .Pp
55 The commands provided by it are:
56 .Pp
57 .Bl -tag -width disable-module_module -compact -offset indent
58 .It Ic print_version
59 Prints the contents of the
60 .Va loader_version
61 environment variable right-justified at the column
62 .Va loader_version_x
63 and row
64 .Va loader_version_y .
65 .El
66 .Pp
67 The environment variables that effect its behavior are:
68 .Bl -tag -width bootfile -offset indent
69 .It Va loader_version
70 Set automatically by
71 .Xr loader 5 ,
72 but you can override it by setting in
73 .Xr loader.conf 4 .
74 This should be the version of boot loader used.
75 .It Va loader_version_x
76 Sets the desired ending column position of
77 .Va loader_version .
78 Default is 80.
79 .It Va loader_version_y
80 Sets the desired ending row position of
81 .Va loader_version .
82 Default is 24.
83 .It Va loader_color
84 If set to
85 .Dq Li NO
86 (case-insensitive) or
87 .Dq Li 0 ,
88 causes the version to be printed without color
89 .Pq default is ANSI Cyan .
90 .El
91 .Sh FILES
92 .Bl -tag -width /boot/version.4th -compact
93 .It Pa /boot/loader
94 The
95 .Xr loader 5 .
96 .It Pa /boot/forth/version.4th
97 .Nm
98 itself.
99 .It Pa /boot/loader.rc
100 .Xr loader 5
101 bootstrapping script.
103 .Sh EXAMPLES
104 Override
105 .Xr loader 5
106 version in
107 .Xr loader.conf 4 :
109 .Bd -literal -offset indent -compact
110 loader_version="loader 1.1"
112 .Sh SEE ALSO
113 .Xr loader.conf 4 ,
114 .Xr color.4th 5 ,
115 .Xr loader 5