Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-12-01 | change to WSEMUL_NO_DUMB | Theo de Raadt | |
2001-11-26 | allow pasting chars w/ codes >127 w/ mouse; from Denis Afonin <dfa@solo.ee> | Michael Shalayeff | |
2001-11-01 | Change d_mmap in struct cdevsw from: | Artur Grabowski | |
int (*d_mmap) __P((dev_t, int, int)); to: paddr_t (*d_mmap) __P((dev_t, off_t, int)); This allows us to mmap devices past 4GB offsets. | |||
2001-10-30 | do not allow setting autorepeat delays causing zero timeouts later. | Michael Shalayeff | |
pointed out for the case of del*=0 in pr@2156 by Juan Vera <juan@coredump.com.ar>. | |||
2001-10-25 | If the console keyboard goes away, reinit wskbd_console_device. | Dale Rahn | |
Will allow future console keyboard attaches to occur. | |||
2001-10-04 | supply entropy from here | Michael Shalayeff | |
2001-09-30 | add mode_lock for mode_shift as the caps_lock is to shift; from Igor Grabin ↵ | Michael Shalayeff | |
<violent@death.kiev.ua> | |||
2001-09-26 | Connect USB keyboards to the display after attaching, no longer requiring | joshua stein | |
'wsconscfg -k' to be run. Thanks to James Matthews for the extra keyboard. aaron@ ok | |||
2001-09-16 | Add some missing lengths checks when passing data from userland to | Todd C. Miller | |
kernel. From based on NetBSD patches. | |||
2001-09-04 | .ua keyboard; from Igor Grabin <violent@death.kiev.ua> | Michael Shalayeff | |
2001-08-29 | less defines | Michael Shalayeff | |
2001-08-29 | make set/get screen work now | Michael Shalayeff | |
2001-08-14 | One char was wrong. -moj | Mats O Jansson | |
2001-08-14 | Allow latin-1 chars. -moj | Mats O Jansson | |
2001-08-14 | add missing latin-1 chars. -moj | Mats O Jansson | |
2001-07-10 | ANSI C does not like labels: without a statement after that. | Marc Espie | |
Restore missing breaks. | |||
2001-06-29 | implement get/set screen ioctls to fetch configured screen list | Michael Shalayeff | |
and switch focus out of comand line utility (to come soon). also, fix duplicated ioctl numbers, so rebuild the ws* utils. | |||
2001-06-13 | add portuguese kbd map; from pmsac <pmsac@netcabo.pt> | Michael Shalayeff | |
2001-06-11 | good when it compiles | Michael Shalayeff | |
2001-06-11 | follow x11 behaviour wrt caps^shift, even i like it this way, but deraadtified | Michael Shalayeff | |
2001-06-09 | Set sc_dying in wskbd_detach, otherwise it's pointless. | Aaron Campbell | |
2001-06-09 | Remove sc_ready from the softc, we can just test sc_events.io instead. | Aaron Campbell | |
2001-06-09 | Allow wskbd_cngetc() to return any key pressed, not just ones in the ASCII | Aaron Campbell | |
group; fixes PR/1787. This mimics the behavior of pccons and pcvt; mickey@ ok | |||
2001-06-08 | swiss french keyboard; from Mathias Schmocker <smat@acm.org> | Michael Shalayeff | |
2001-06-08 | and add a note on result value importance | Michael Shalayeff | |
2001-06-08 | invert caps w/ shifts, also cleanup the whole routine; pointed out by ↵ | Michael Shalayeff | |
pvalchev@; aaron@ ok | |||
2001-06-04 | Don't print these messages unless debugging. mickey@ ok | Hakan Olsson | |
2001-05-24 | Check malloc() return value, from tedu@heorot.stanford.edu | Angelos D. Keromytis | |
2001-05-16 | it is not right to malloc() w/ WAITOK at attach time, put back NULL check ↵ | Michael Shalayeff | |
and change to NOWAIT | |||
2001-05-16 | it is not right to malloc() w/ WAITOK at attach time, put back NULL check ↵ | Michael Shalayeff | |
and change to NOWAIT | |||
2001-05-16 | No need to check M_WAIT/M_WAITOK malloc return values. (art@ ok) | Hakan Olsson | |
2001-05-16 | kill COMPAT_{09,10,11} kernel options. We still need kern_info_09.c and ↵ | Todd C. Miller | |
kern_ipc_10.c for other compat modules. | |||
2001-05-14 | add swiss german layout; from Kaspar Brand <kasparb@freesurf.ch> | Michael Shalayeff | |
2001-05-08 | inplement screen burner in screenblank(1) style (no program though). | Michael Shalayeff | |
disabled by default, also supports vsync blanking, disabled by default. aaron@ looked at it a while back and i fixed problems he had indicated. | |||
2001-05-01 | splhigh -> spltty | Aaron Campbell | |
2001-04-30 | koi8-r keyboard layout; from igor grabin <violent@death.kiev.ua> | Michael Shalayeff | |
2001-04-18 | Oops -- adjust the comment as well. | Aaron Campbell | |
2001-04-18 | Set the default bell pitch to 400, like X. | Aaron Campbell | |
2001-04-17 | During a mouse motion event, inverse the new mouse position first, then the | Aaron Campbell | |
old one, instead of the other way around. This makes the motion look much more fluid on my laptop LCD. | |||
2001-04-17 | Implement cnbell(), an optional entrypoint that rings the console bell; from | Aaron Campbell | |
NetBSD. deraadt@ ok | |||
2001-04-16 | Don't remove the mouse cursor when output occurs on a virtual terminal different | jbm | |
from the current one. | |||
2001-04-14 | KNF | Aaron Campbell | |
2001-04-14 | Remove non-portable sysbeep calls; deraadt@ | Aaron Campbell | |
2001-04-14 | Remove some static. | Aaron Campbell | |
2001-04-14 | Kernel support for console mouse functionality which will be controlled by | Aaron Campbell | |
the wsmoused daemon (replacement for moused which was used with PCVT). Adds a "getchar" method to the display drivers which returns the value of the character currently under the cursor (e.g., so it may be inversed). From jbm@. Still needs a bit of cleanup and improvement, especially X cohabitation features. The pointer moves to fast as well. These sorts of issues will be corrected in-tree. | |||
2001-04-09 | Honor the db_console sysctl variable, like PCVT did. | Aaron Campbell | |
2001-03-30 | Add a new wsmuxop, dissetdisplay, which wsmux uses to disocver whether a mux | Aaron Campbell | |
device is connected to a display or not. Use it in wsmux_detach_sc(). This fixes a problem I've been struggling with whereby the machine panics if I detach a USB keyboard before disconnecting it from wsdisplay. | |||
2001-03-14 | Back out order change in conf.c and priority change in wscons_machdep.c | Todd C. Miller | |
Add kludge to prevent wscons on i386 from stealing the console from another source. wscons should really be fixed to not touch cn_tab... | |||
2001-03-14 | allow listing and soon deleting fonts; aaron@ ok | Michael Shalayeff | |
2001-03-09 | Add Belgian keymap for wscons; addresses PR/1592 from TDeval@PrimeOBJ.COM. | Aaron Campbell | |