2001-04-03 16:02:22 +04:00
|
|
|
.\" $NetBSD: wsfontload.8,v 1.12 2001/04/03 12:02:22 wiz Exp $
|
1999-01-13 22:02:34 +03:00
|
|
|
.\"
|
2001-01-26 23:25:25 +03:00
|
|
|
.Dd November 8, 2000
|
1999-01-13 22:02:34 +03:00
|
|
|
.Os
|
|
|
|
.Dt WSFONTLOAD 8
|
|
|
|
.Sh NAME
|
|
|
|
.Nm wsfontload
|
|
|
|
.Nd load a font bitmap into a wscons display device
|
|
|
|
.Sh SYNOPSIS
|
1999-03-07 14:58:22 +03:00
|
|
|
.Nm ""
|
|
|
|
.Bk -words
|
|
|
|
.Op Fl f Ar ctldev
|
|
|
|
.Ek
|
|
|
|
.Bk -words
|
|
|
|
.Op Fl w Ar width
|
|
|
|
.Ek
|
|
|
|
.Bk -words
|
|
|
|
.Op Fl h Ar height
|
|
|
|
.Ek
|
|
|
|
.Bk -words
|
|
|
|
.Op Fl e Ar encoding
|
|
|
|
.Ek
|
|
|
|
.Bk -words
|
|
|
|
.Op Fl N Ar name
|
|
|
|
.Ek
|
2000-01-05 21:46:43 +03:00
|
|
|
.Bk -words
|
|
|
|
.Op Fl b
|
|
|
|
.Ek
|
|
|
|
.Bk -words
|
|
|
|
.Op Fl B
|
|
|
|
.Ek
|
2001-01-26 23:25:25 +03:00
|
|
|
.Bk -words
|
|
|
|
.Op Fl v
|
|
|
|
.Ek
|
1999-01-13 22:02:34 +03:00
|
|
|
.Op Ar fontfile
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
|
|
|
utility loads a font bitmap to a wscons device if the device driver
|
|
|
|
supports this.
|
|
|
|
The font gets assigned a name in this process which it can be referred to
|
|
|
|
by later for use on a display screen.
|
|
|
|
The font is loaded from the specified
|
|
|
|
.Ar fontfile ,
|
2000-10-02 21:04:12 +04:00
|
|
|
or from standard input if
|
1999-01-13 22:02:34 +03:00
|
|
|
.Ar fontfile
|
|
|
|
is not provided.
|
|
|
|
.Pp
|
|
|
|
The options are:
|
|
|
|
.Bl -tag -width xxxxxxxxxxx
|
|
|
|
.It Fl f Ar ctldev
|
|
|
|
Specify the control device of the wscons display to operate on.
|
|
|
|
Default is
|
|
|
|
.Pa /dev/ttyEcfg .
|
|
|
|
.It Fl w Ar width
|
|
|
|
Sets the width of a font character in pixels. Default is 8.
|
|
|
|
.It Fl h Ar height
|
|
|
|
Sets the width of a font character in pixels. Default is 16.
|
|
|
|
.It Fl e Ar encoding
|
|
|
|
Sets the encoding of the font. This can be either a symbolic abbreviation
|
|
|
|
or a numeric value. Currently recognized abbreviations are
|
2000-10-03 18:20:52 +04:00
|
|
|
.Ql iso
|
1999-01-13 22:02:34 +03:00
|
|
|
for ISO-8859-1 encoding,
|
2000-10-03 18:20:52 +04:00
|
|
|
.Ql ibm
|
1999-01-13 22:02:34 +03:00
|
|
|
for IBM encoded fonts and
|
2000-10-03 18:20:52 +04:00
|
|
|
.Ql pcvt
|
1999-01-13 22:02:34 +03:00
|
|
|
for the custom encoding of the supplemental fonts which came with
|
2000-10-03 18:20:52 +04:00
|
|
|
the
|
|
|
|
.Bx
|
1999-01-13 22:02:34 +03:00
|
|
|
.Dq pcvt
|
|
|
|
console driver. Per default,
|
2000-10-03 18:20:52 +04:00
|
|
|
.Ql iso
|
1999-01-13 22:02:34 +03:00
|
|
|
is assumed.
|
|
|
|
.It Fl N Ar name
|
|
|
|
Specifies a name which can be used later to refer to the font.
|
|
|
|
In none is given, the
|
|
|
|
.Ar fontfile
|
|
|
|
name is used to create one.
|
2000-01-05 21:46:43 +03:00
|
|
|
.It Fl b
|
|
|
|
Specifies that the font data is ordered right-to-left bit wise. The default
|
|
|
|
is left-to-right.
|
|
|
|
.It Fl B
|
|
|
|
Specifies that the font data is ordered right-to-left byte wise. The default
|
|
|
|
is left-to-right.
|
2001-01-26 23:25:25 +03:00
|
|
|
.It Fl v
|
|
|
|
Prints the font's properties before loading it.
|
1999-01-13 22:02:34 +03:00
|
|
|
.El
|
1999-03-31 19:15:57 +04:00
|
|
|
.Pp
|
|
|
|
Typically, the
|
|
|
|
.Nm
|
|
|
|
utility will be executed in system startup by the
|
2000-08-22 12:49:01 +04:00
|
|
|
.Pa /etc/rc.d/wscons
|
1999-03-31 19:15:57 +04:00
|
|
|
script, controlled by the
|
|
|
|
.Pa /etc/wscons.conf
|
|
|
|
configuration file.
|
|
|
|
.Sh EXAMPLES
|
2000-10-27 15:31:32 +04:00
|
|
|
.Dl wsfontload -N myname -h 8 -e ibm /usr/share/wscons/fonts/vt220l.808
|
1999-03-31 19:15:57 +04:00
|
|
|
.Pp
|
2000-10-03 18:20:52 +04:00
|
|
|
Load the IBM-encoded 8\(mu8-font from the
|
2000-10-27 15:31:32 +04:00
|
|
|
.Xr wscons 4
|
2000-10-03 18:20:52 +04:00
|
|
|
distribution. This (or another 8\(mu8-font) is necessary to use the
|
1999-03-31 19:15:57 +04:00
|
|
|
50-line screen type on
|
|
|
|
.Xr vga 4
|
|
|
|
displays.
|
2000-10-02 21:04:12 +04:00
|
|
|
.Sh FILES
|
|
|
|
.Pa /etc/wscons.conf
|
2001-04-03 16:02:22 +04:00
|
|
|
.Pa /usr/share/wscons/fonts
|
1999-04-06 08:54:19 +04:00
|
|
|
.Sh SEE ALSO
|
1999-02-04 00:01:40 +03:00
|
|
|
.Xr wscons 4 ,
|
|
|
|
.Xr wsconscfg 8 ,
|
|
|
|
.Xr wsconsctl 8
|
2000-10-02 21:04:12 +04:00
|
|
|
.Sh BUGS
|
|
|
|
Many features are missing.
|
|
|
|
.Pp
|
|
|
|
There is no way to remove a loaded font.
|