1# $NetBSD: files.wscons,v 1.21 2001/02/24 01:59:48 lukem Exp $ 2 3# 4# "Workstation Console" glue; attaches frame buffer to emulator & keyboard, 5# plus deals with kernel mouse drivers. 6# 7# These files are included with strange conditions because of the hairy 8# interactions between them. In particular, chunks of the glue, 9# keyboard, and mouse code are called directly by other chunks. Also, 10# each hardware driver can make calls into its (child) interface driver. 11# This could all be cleaned up, but it's not clear that it's worth the 12# trouble. 13# 14 15defopt opt_wsemul.h WSEMUL_DEFAULT WSEMUL_NO_DUMB 16 WSEMUL_SUN WSEMUL_VT100 17defopt opt_wskernattr.h WS_KERNEL_FG WS_KERNEL_BG 18 WS_KERNEL_COLATTR WS_KERNEL_MONOATTR 19defopt opt_wsdisplay_compat.h WSDISPLAY_COMPAT_USL WSCOMPAT_USL_SYNCTIMEOUT 20 WSDISPLAY_COMPAT_RAWKBD 21 WSDISPLAY_COMPAT_PCVT WSDISPLAY_COMPAT_SYSCONS 22 WSDISPLAY_DEFAULTSCREENS 23 WSCONS_SUPPORT_PCVTFONTS WSCONS_SUPPORT_ISO7FONTS 24 25# this loses, but there's no way to define attributes which have attributes 26device wsdisplay #tty? 27attach wsdisplay at wsemuldisplaydev with wsdisplay_emul 28attach wsdisplay at wsdisplaydev with wsdisplay_noemul 29device wskbd 30attach wskbd at wskbddev 31device wsmouse 32attach wsmouse at wsmousedev 33 34file dev/wscons/wsdisplay.c wsdisplay needs-flag 35file dev/wscons/wsdisplay_compat_usl.c wsdisplay & wsdisplay_compat_usl 36file dev/wscons/wsemulconf.c wsdisplay 37file dev/wscons/wsemul_dumb.c wsdisplay & !wsemul_no_dumb 38file dev/wscons/wsemul_sun.c wsdisplay & wsemul_sun 39file dev/wscons/wsemul_vt100.c wsdisplay & wsemul_vt100 40file dev/wscons/wsemul_vt100_subr.c wsdisplay & wsemul_vt100 41file dev/wscons/wsemul_vt100_chars.c wsdisplay & wsemul_vt100 42file dev/wscons/wsemul_vt100_keys.c wsdisplay & wsemul_vt100 43file dev/wscons/wsevent.c wskbd | wsmouse 44file dev/wscons/wskbd.c wskbd needs-flag 45file dev/wscons/wskbdutil.c wskbd needs-flag 46file dev/wscons/wsmouse.c wsmouse needs-flag 47 48# rcons bit-depth options 49defopt opt_rcons.h RCONS_2BPP RCONS_4BPP RCONS_16BPP 50 51file dev/rcons/raster_op.c wsrasteremulops 52file dev/rcons/raster_text.c wsrasteremulops 53file dev/wscons/wscons_rinit.c wsrasteremulops 54file dev/wscons/wscons_rops.c wsrasteremulops 55 56defpseudo wsmux 57file dev/wscons/wsmux.c wsmux | wsdisplay needs-flag 58