Add wsfont support. Addresses PR#18388.
This commit is contained in:
parent
f8d2e9e189
commit
cd3c6906c0
@ -1,5 +1,5 @@
|
||||
#!/bin/sh -
|
||||
# $NetBSD: MAKEDEV,v 1.108 2003/04/27 13:15:30 ragge Exp $
|
||||
# $NetBSD: MAKEDEV,v 1.109 2003/05/04 01:18:56 gmcgarry Exp $
|
||||
#
|
||||
# Copyright (c) 1990 The Regents of the University of California.
|
||||
# All rights reserved.
|
||||
@ -129,6 +129,7 @@
|
||||
# bktr Brooktree 848/849/878/879 based TV cards
|
||||
# kttcp kernel ttcp helper device
|
||||
# radio* control radio receivers
|
||||
# wsfont* console font control
|
||||
|
||||
dialin=0
|
||||
dialout=524288
|
||||
@ -195,6 +196,7 @@ wscons)
|
||||
makedev wsmux0 wsmux1 wsmux2 wsmux3
|
||||
makedev wsmouse wskbd
|
||||
makedev ttyEcfg
|
||||
makedev wsfont
|
||||
makedev stic0
|
||||
;;
|
||||
|
||||
@ -796,6 +798,12 @@ radio*)
|
||||
chmod 666 $radio
|
||||
;;
|
||||
|
||||
wsfont)
|
||||
rm -f wsfont
|
||||
mknod wsfont c 76 0
|
||||
chmod 600 wsfont
|
||||
;;
|
||||
|
||||
local)
|
||||
if [ -f "$0.local" ]; then
|
||||
umask 0
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: ALPHA,v 1.181 2003/04/27 13:31:11 tsutsui Exp $
|
||||
# $NetBSD: ALPHA,v 1.182 2003/05/04 01:19:17 gmcgarry Exp $
|
||||
#
|
||||
# Alpha kernel with all the options you'd want, and more.
|
||||
|
||||
@ -6,7 +6,7 @@ include "arch/alpha/conf/std.alpha"
|
||||
|
||||
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
|
||||
|
||||
ident "ALPHA-$Revision: 1.181 $"
|
||||
ident "ALPHA-$Revision: 1.182 $"
|
||||
|
||||
maxusers 32
|
||||
|
||||
@ -594,4 +594,5 @@ pseudo-device rnd # /dev/random and in-kernel generator
|
||||
# a pseudo device needed for Coda # also needs CODA (above)
|
||||
pseudo-device vcoda 4 # coda minicache <-> venus comm.
|
||||
pseudo-device clockctl # user control of clock subsystem
|
||||
pseudo-device wsfont
|
||||
pseudo-device ksyms # /dev/ksyms
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: GENERIC,v 1.229 2003/04/26 14:10:14 ragge Exp $
|
||||
# $NetBSD: GENERIC,v 1.230 2003/05/04 01:19:17 gmcgarry Exp $
|
||||
#
|
||||
# GENERIC machine description file
|
||||
#
|
||||
@ -25,7 +25,7 @@ include "arch/alpha/conf/std.alpha"
|
||||
|
||||
options INCLUDE_CONFIG_FILE # embed config file in kernel binary
|
||||
|
||||
#ident "GENERIC-$Revision: 1.229 $"
|
||||
#ident "GENERIC-$Revision: 1.230 $"
|
||||
|
||||
maxusers 32
|
||||
|
||||
@ -576,4 +576,5 @@ pseudo-device sequencer 1 # MIDI sequencer
|
||||
pseudo-device rnd # /dev/random and in-kernel generator
|
||||
#options RND_COM # use "com" randomness too
|
||||
pseudo-device clockctl # user control of clock subsystem
|
||||
pseudo-device wsfont
|
||||
pseudo-device ksyms # /dev/ksyms
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $NetBSD: majors.alpha,v 1.6 2003/04/25 21:10:48 ragge Exp $
|
||||
# $NetBSD: majors.alpha,v 1.7 2003/05/04 01:19:17 gmcgarry Exp $
|
||||
#
|
||||
# Device majors for alpha
|
||||
#
|
||||
@ -74,3 +74,4 @@ device-major kttcp char 72 kttcp
|
||||
device-major cgd char 73 block 18 cgd
|
||||
device-major radio char 74 radio
|
||||
device-major ksyms char 75 ksyms
|
||||
device-major wsfont char 76 wsfont
|
||||
|
Loading…
Reference in New Issue
Block a user