1 # $NetBSD: files.wscons,v 1.31 2004/07/28 12:34:04 jmmv 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 15 defparam opt_wsemul.h WSEMUL_DEFAULT 16 defflag opt_wsemul.h WSEMUL_NO_DUMB WSEMUL_SUN WSEMUL_VT100 17 defparam opt_wsmsgattrs.h WS_DEFAULT_COLATTR WS_DEFAULT_MONOATTR 18 WS_DEFAULT_BG WS_DEFAULT_FG 19 WS_KERNEL_COLATTR WS_KERNEL_MONOATTR 20 WS_KERNEL_BG WS_KERNEL_FG 21 WSDISPLAY_SCROLLCOMBO 22 defparam opt_wsemul.h WSEMUL_VT100_HILIT_FG WSEMUL_VT100_UNDERLINE_FG 23 WSEMUL_VT100_HILIT_BG WSEMUL_VT100_UNDERLINE_BG 24 defflag opt_wsdisplay_compat.h WSDISPLAY_COMPAT_USL 25 WSDISPLAY_COMPAT_RAWKBD 26 WSDISPLAY_COMPAT_PCVT WSDISPLAY_COMPAT_SYSCONS 27 WSDISPLAY_CHARFUNCS 28 WSCONS_SUPPORT_PCVTFONTS 29 WSCONS_SUPPORT_ISO7FONTS 30 WSDISPLAY_SCROLLSUPPORT 31 defparam opt_wsdisplay_compat.h WSCOMPAT_USL_SYNCTIMEOUT 32 WSDISPLAY_DEFAULTSCREENS 33 34 # this loses, but there's no way to define attributes which have attributes 35 device wsdisplay #tty? 36 attach wsdisplay at wsemuldisplaydev with wsdisplay_emul 37 attach wsdisplay at wsdisplaydev with wsdisplay_noemul 38 device wskbd 39 attach wskbd at wskbddev 40 device wsmouse 41 attach wsmouse at wsmousedev 42 43 file dev/wscons/wsdisplay.c wsdisplay needs-flag 44 file dev/wscons/wsdisplay_compat_usl.c wsdisplay & wsdisplay_compat_usl 45 file dev/wscons/wsemulconf.c wsdisplay 46 file dev/wscons/wsemul_dumb.c wsdisplay & !wsemul_no_dumb 47 file dev/wscons/wsemul_sun.c wsdisplay & wsemul_sun 48 file dev/wscons/wsemul_vt100.c wsdisplay & wsemul_vt100 49 file dev/wscons/wsemul_vt100_subr.c wsdisplay & wsemul_vt100 50 file dev/wscons/wsemul_vt100_chars.c wsdisplay & wsemul_vt100 51 file dev/wscons/wsemul_vt100_keys.c wsdisplay & wsemul_vt100 52 file dev/wscons/wsevent.c wsdisplay | wskbd | wsmouse | wsmux 53 file dev/wscons/wskbd.c wskbd needs-flag 54 file dev/wscons/wskbdutil.c wskbd needs-flag 55 file dev/wscons/wsmouse.c wsmouse needs-flag 56 57 # rcons bit-depth options 58 include "dev/rcons/files.rcons" 59 60 file dev/wscons/wscons_rinit.c wsrasteremulops 61 file dev/wscons/wscons_rops.c wsrasteremulops 62 63 defpseudo wsmux 64 file dev/wscons/wsmux.c wsmux needs-flag 65 66 define tpcalib 67 file dev/wscons/tpcalib.c tpcalib 68 file dev/wscons/mra.c tpcalib 69