diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-08-17 20:55:31 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-08-17 20:55:31 +0000 |
commit | 8a08a69ae87de7ee1a3785a5214ec9ac2bdf731e (patch) | |
tree | 7301d0e9c7710c0bdba5e6dfbe0f54b7eae3c100 /sys/dev | |
parent | faafc8a25ec412082a4da831bdc33acf7fe4048c (diff) |
The consensus was to include both FONT_GALLANT12x22 and FONT_BOLD8x16
for sparc, even when SMALL_KERNEL is defined. That way we get a
reasonable font on the sparcbook for the install.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/wsfont/wsfont.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/wsfont/wsfont.c b/sys/dev/wsfont/wsfont.c index 60e84a7df2a..104bf09ef10 100644 --- a/sys/dev/wsfont/wsfont.c +++ b/sys/dev/wsfont/wsfont.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wsfont.c,v 1.5 2002/07/25 18:57:50 miod Exp $ */ +/* $OpenBSD: wsfont.c,v 1.6 2002/08/17 20:55:30 millert Exp $ */ /* $NetBSD: wsfont.c,v 1.17 2001/02/07 13:59:24 ad Exp $ */ /*- @@ -99,8 +99,8 @@ /* Make sure we always have at least one font. */ #ifndef HAVE_FONT #define HAVE_FONT 1 -#if defined(SMALL_KERNEL) -#if defined(__sparc__) || defined(__sparc64__) +#if defined(SMALL_KERNEL) && !defined(__sparc__) +#if defined(__sparc64__) #define FONT_GALLANT12x22 #else #define FONT_BOLD8x16 1 |