Replace qvss8x15 with version from NetBSD/vax, which contains the full ISO
character set.
This commit is contained in:
parent
380d12dfbd
commit
c0735a01c5
@ -1,9 +1,10 @@
|
|||||||
# $NetBSD: files.wsfont,v 1.2 1999/04/14 18:25:47 ad Exp $
|
# $NetBSD: files.wsfont,v 1.3 1999/04/14 23:06:26 ad Exp $
|
||||||
#
|
#
|
||||||
# "Workstation Font" config glue used by rcons and wscons.
|
# "Workstation Font" config glue used by rcons and wscons.
|
||||||
#
|
#
|
||||||
file dev/wsfont/wsfont.c rasterconsole | wsdisplay
|
file dev/wsfont/wsfont.c rasterconsole | wsdisplay
|
||||||
|
|
||||||
defopt opt_wsfont.h FONT_ISO8x16 FONT_BOLD8x16
|
defopt opt_wsfont.h FONT_BOLD8x16
|
||||||
FONT_GALLANT12x22 FONT_QVSS8x15
|
FONT_GALLANT12x22
|
||||||
|
FONT_QVSS8x15
|
||||||
FONT_LUCIDA16x29
|
FONT_LUCIDA16x29
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,4 +1,4 @@
|
|||||||
/* $NetBSD: wsfont.c,v 1.3 1999/04/14 18:25:47 ad Exp $ */
|
/* $NetBSD: wsfont.c,v 1.4 1999/04/14 23:06:26 ad Exp $ */
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* Copyright (c) 1999 Andy Doran <ad@NetBSD.org>
|
* Copyright (c) 1999 Andy Doran <ad@NetBSD.org>
|
||||||
@ -28,7 +28,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include <sys/cdefs.h>
|
#include <sys/cdefs.h>
|
||||||
__KERNEL_RCSID(0, "$NetBSD: wsfont.c,v 1.3 1999/04/14 18:25:47 ad Exp $");
|
__KERNEL_RCSID(0, "$NetBSD: wsfont.c,v 1.4 1999/04/14 23:06:26 ad Exp $");
|
||||||
|
|
||||||
#include "opt_wsfont.h"
|
#include "opt_wsfont.h"
|
||||||
|
|
||||||
@ -44,14 +44,9 @@ __KERNEL_RCSID(0, "$NetBSD: wsfont.c,v 1.3 1999/04/14 18:25:47 ad Exp $");
|
|||||||
|
|
||||||
#undef HAVE_FONT
|
#undef HAVE_FONT
|
||||||
|
|
||||||
#ifdef FONT_ISO8x16
|
#ifdef FONT_QVSS8x15
|
||||||
#define HAVE_FONT 1
|
#define HAVE_FONT 1
|
||||||
#include <dev/wsfont/iso8x16.h>
|
#include <dev/wsfont/qvss8x15.h>
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef FONT_BOLD8x16
|
|
||||||
#define HAVE_FONT 1
|
|
||||||
#include <dev/wsfont/bold8x16.h>
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef FONT_GALLANT12x22
|
#ifdef FONT_GALLANT12x22
|
||||||
@ -64,14 +59,14 @@ __KERNEL_RCSID(0, "$NetBSD: wsfont.c,v 1.3 1999/04/14 18:25:47 ad Exp $");
|
|||||||
#include <dev/wsfont/lucida16x29.h>
|
#include <dev/wsfont/lucida16x29.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Make sure we always have at least one font. Choose the most ugly one. */
|
/* Make sure we always have at least one font. */
|
||||||
#ifndef HAVE_FONT
|
#ifndef HAVE_FONT
|
||||||
#define HAVE_FONT 1
|
#define HAVE_FONT 1
|
||||||
#define FONT_QVSS8x15 1
|
#define FONT_BOLD8x16 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef FONT_QVSS8x15
|
#ifdef FONT_BOLD8x16
|
||||||
#include <dev/wsfont/qvss8x15.h>
|
#include <dev/wsfont/bold8x16.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Placeholder struct used for linked list */
|
/* Placeholder struct used for linked list */
|
||||||
|
Loading…
Reference in New Issue
Block a user