Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/powerpc/oea for some reason we can't use the ROM fo...



details:   https://anonhg.NetBSD.org/src/rev/9247fdc11010
branches:  trunk
changeset: 786024:9247fdc11010
user:      macallan <macallan%NetBSD.org@localhost>
date:      Thu Apr 11 18:04:20 2013 +0000

description:
for some reason we can't use the ROM font on G5, so disable it with
options OFWOEA_WSCONS_NO_ROM_FONT
from Phileas Fogg

diffstat:

 sys/arch/powerpc/oea/ofw_rascons.c |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (28 lines):

diff -r 653d80ac6dea -r 9247fdc11010 sys/arch/powerpc/oea/ofw_rascons.c
--- a/sys/arch/powerpc/oea/ofw_rascons.c        Thu Apr 11 17:51:04 2013 +0000
+++ b/sys/arch/powerpc/oea/ofw_rascons.c        Thu Apr 11 18:04:20 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ofw_rascons.c,v 1.8 2012/02/01 09:54:03 matt Exp $     */
+/*     $NetBSD: ofw_rascons.c,v 1.9 2013/04/11 18:04:20 macallan Exp $ */
 
 /*
  * Copyright (c) 1995, 1996 Carnegie-Mellon University.
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ofw_rascons.c,v 1.8 2012/02/01 09:54:03 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ofw_rascons.c,v 1.9 2013/04/11 18:04:20 macallan Exp $");
 
 #include "wsdisplay.h"
 
@@ -98,7 +98,9 @@
 
        wsfont_init();
        if (copy_rom_font() == 0) {
+#if !defined(OFWOEA_WSCONS_NO_ROM_FONT)
                romfont_loaded = 1;
+#endif /* !OFWOEA_WSCONS_NO_ROM_FONT */
        }
 
        /* set up rasops */



Home | Main Index | Thread Index | Old Index