diff options
Diffstat (limited to 'usr.sbin/pcvt/loadfont')
-rw-r--r-- | usr.sbin/pcvt/loadfont/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/pcvt/loadfont/loadfont.1 | 15 | ||||
-rw-r--r-- | usr.sbin/pcvt/loadfont/loadfont.c | 13 |
3 files changed, 12 insertions, 18 deletions
diff --git a/usr.sbin/pcvt/loadfont/Makefile b/usr.sbin/pcvt/loadfont/Makefile index c0f454f..50646a7 100644 --- a/usr.sbin/pcvt/loadfont/Makefile +++ b/usr.sbin/pcvt/loadfont/Makefile @@ -1,3 +1,5 @@ +# $FreeBSD$ + PROG= loadfont .include <bsd.prog.mk> diff --git a/usr.sbin/pcvt/loadfont/loadfont.1 b/usr.sbin/pcvt/loadfont/loadfont.1 index 04e82a7..d51a014 100644 --- a/usr.sbin/pcvt/loadfont/loadfont.1 +++ b/usr.sbin/pcvt/loadfont/loadfont.1 @@ -1,4 +1,4 @@ -.\" Copyright (c) 1992, 1995 Hellmuth Michaelis +.\" Copyright (c) 1992, 2000 Hellmuth Michaelis .\" .\" All rights reserved. .\" @@ -10,11 +10,6 @@ .\" 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. -.\" 3. All advertising materials mentioning features or use of this software -.\" must display the following acknowledgement: -.\" This product includes software developed by Hellmuth Michaelis -.\" 4. The name authors may not be used to endorse or promote products -.\" derived from this software without specific prior written permission. .\" .\" THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES @@ -27,15 +22,15 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" @(#)loadfont.1, 3.20, Last Edit-Date: [Tue Apr 4 13:06:00 1995] +.\" Last Edit-Date: [Mon Mar 27 17:07:57 2000] +.\" .\" $FreeBSD$ .\" -.Dd April 4, 1995 +.Dd March 27, 2000 .Dt LOADFONT 1 .Sh NAME .Nm loadfont -.Nd is used to load fonts into EGA or VGA boards for use by the 'pcvt' video -driver. +.Nd pcvt utility for loading fonts into VGA/EGA boards .Sh SYNOPSIS .Nm loadfont .Op Fl c Ar charsetno diff --git a/usr.sbin/pcvt/loadfont/loadfont.c b/usr.sbin/pcvt/loadfont/loadfont.c index ce4abc3..a9a5bc5 100644 --- a/usr.sbin/pcvt/loadfont/loadfont.c +++ b/usr.sbin/pcvt/loadfont/loadfont.c @@ -30,19 +30,16 @@ * 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. - * */ -static char *id = - "@(#)loadfont.c, 3.20, Last Edit-Date: [Fri Apr 7 10:13:16 1995]"; - /*---------------------------------------------------------------------------* * - * load a font into vga character font memory + * load a font into VGA character font memory + * ------------------------------------------ + * + * Last Edit-Date: [Mon Mar 27 17:09:25 2000]; * - * -hm removing explicit HGC support (same as MDA ..) - * -hm new pcvt_ioctl.h SIZ_xxROWS - * -hm add -d option + * $FreeBSD$ * *---------------------------------------------------------------------------*/ |