Re: vax wscons setting questions
Izumi Tsutsui <[email protected]>
| Newsgroups | gmane.os.netbsd.ports.vax |
|---|---|
| Message-ID | <[email protected]> |
I wrote: > I'm not sure how many NetBSD/vax uses use framebuffer/keyboard consoles, > but I have two questions about default NetBSD/vax wscons settings. > > * 1. MAKEDEV all only creats first ttyw0 for wsdisplay tty : > * 2. ttys(5) settings for wsdisplay ttys If there is no particular comment, I'll commit the attached change to make X.org server work with the default installation settings. (X.org requires /dev/ttyE0, /dev/wskbd0, and /dev/wsmouse0 etc.) Index: etc/etc.vax/MAKEDEV.conf =================================================================== RCS file: /cvsroot/src/etc/etc.vax/MAKEDEV.conf,v retrieving revision 1.19 diff -u -p -d -r1.19 MAKEDEV.conf --- etc/etc.vax/MAKEDEV.conf 22 Jun 2017 17:51:22 -0000 1.19 +++ etc/etc.vax/MAKEDEV.conf 31 Jan 2024 14:37:11 -0000 @@ -9,6 +9,7 @@ all_md) makedev audio speaker makedev usbs makedev std_vax + makedev wscons ;; ramdisk) Index: etc/etc.vax/ttys =================================================================== RCS file: /cvsroot/src/etc/etc.vax/ttys,v retrieving revision 1.10 diff -u -p -d -r1.10 ttys --- etc/etc.vax/ttys 25 Sep 2019 23:09:24 -0000 1.10 +++ etc/etc.vax/ttys 31 Jan 2024 14:37:11 -0000 @@ -10,14 +10,14 @@ console "/usr/libexec/getty std.9600" un constty "/usr/libexec/getty std.9600" unknown on secure # Virtual terminals on VS3100 with "glass tty" -#ttyw0 "/usr/libexec/getty std.9600" sun on secure -#ttyw1 "/usr/libexec/getty std.9600" sun on secure -#ttyw2 "/usr/libexec/getty std.9600" sun on secure -#ttyw3 "/usr/libexec/getty std.9600" sun on secure -#ttyw4 "/usr/libexec/getty std.9600" sun on secure -#ttyw5 "/usr/libexec/getty std.9600" sun on secure -#ttyw6 "/usr/libexec/getty std.9600" sun on secure -#ttyw7 "/usr/libexec/getty std.9600" sun on secure +#ttyw0 "/usr/libexec/getty std.9600" wsvt25 on secure +#ttyw1 "/usr/libexec/getty std.9600" wsvt25 on secure +#ttyw2 "/usr/libexec/getty std.9600" wsvt25 on secure +#ttyw3 "/usr/libexec/getty std.9600" wsvt25 on secure +#ttyw4 "/usr/libexec/getty std.9600" wsvt25 on secure +#ttyw5 "/usr/libexec/getty std.9600" wsvt25 on secure +#ttyw6 "/usr/libexec/getty std.9600" wsvt25 on secure +#ttyw7 "/usr/libexec/getty std.9600" wsvt25 on secure # DZ-11 lines, not frobbed by getty (keyboard/mouse may be sad) #tty00 "/usr/libexec/getty std.9600" unknown off secure Thanks, --- Izumi Tsutsui