aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/vt
Commit message (Expand)AuthorAgeFilesLines
...
* The "vt_suspend_flush_timer()" function is sometimes called lockedHans Petter Selasky2015-01-021-1/+10
* vt_vga: fix an off-by-one errorRoger Pau Monné2014-12-301-1/+1
* Partially revert "vt: register the memory regions used by the vt drivers"Roger Pau Monné2014-12-301-53/+0
* Support ALT_BREAK_TO_DEBUGGER in vt(4)Ed Maste2014-12-272-1/+4
* vt: register the memory regions used by the vt driversRoger Pau Monné2014-12-222-0/+108
* vt(4): Support syscons' SC_HISTORY_SIZE to configure history sizeJean-Sébastien Pédron2014-11-041-1/+6
* vt(4): Fix keyboard allocation when kbdmux(4) isn't usedJean-Sébastien Pédron2014-11-021-1/+1
* vt(4): Adjust the cursor position after changing the window sizeJean-Sébastien Pédron2014-11-012-0/+13
* vt(4): Add PIO_VFONT_DEFAULT ioctl to restore the default builtin fontJean-Sébastien Pédron2014-10-231-0/+5
* vt(4): Refuse to load a font if hw.vga.textmode is selectedJean-Sébastien Pédron2014-10-201-0/+3
* Do nothing in vt_upgrade if there is no vt driverEd Maste2014-10-171-0/+2
* Allow vt(4) to disable terminal bell with `sysctl kern.vt.bell_enable=0`,Aleksandr Rybalko2014-10-071-0/+7
* vt(4): Don't recalculate buffer size if we don't know screen sizeJean-Sébastien Pédron2014-10-041-1/+2
* vt(4): Save/restore keyboard mode & LED states when switching windowJean-Sébastien Pédron2014-10-022-36/+216
* Make gcc happy by initialising the variable only set in a couple ofBjoern A. Zeeb2014-09-201-0/+1
* vt(4): Remove superfluous word in commentJean-Sébastien Pédron2014-09-191-1/+1
* vt(4): Rewrite history scrollingJean-Sébastien Pédron2014-09-192-87/+172
* vt(4): Remove vt_buf->vb_dirtymaskJean-Sébastien Pédron2014-09-193-50/+3
* vt(4): Use strncpy() to copy into a fixed-size bufferJean-Sébastien Pédron2014-09-181-1/+2
* vt(4): Fix out-of-bounds array access in VT_ACTIVATE ioctl handlingJean-Sébastien Pédron2014-09-181-1/+1
* vt(4): Use vt_fb_drawrect() and vt_fb_setpixel() in all vt_fb-derivativeJean-Sébastien Pédron2014-09-164-5/+8
* vt(4): Fix a LOR which occurs during a call to vt_upgrade()Jean-Sébastien Pédron2014-09-161-1/+1
* vt(4): Enclose vt_mouse_paste() prototype inside #ifndef SC_NO_CUTPASTE/#endifJean-Sébastien Pédron2014-09-131-0/+2
* Fix 'function declaration isn't a prototype' warning.Aleksandr Rybalko2014-09-121-1/+1
* Fix stray char on paste.Aleksandr Rybalko2014-09-121-1/+1
* Switch vt(4) to traditional behaviour with copy-paste same as syscons(4) do.Aleksandr Rybalko2014-09-121-1/+11
* Switch vt(4) to traditional behaviour with copy-paste same as syscons(4) do.Aleksandr Rybalko2014-09-121-38/+62
* Remove stray whitespaces.Aleksandr Rybalko2014-09-123-3/+3
* Fix one more spelling mistake.Aleksandr Rybalko2014-09-101-1/+1
* spelling fixesAleksandr Rybalko2014-09-102-3/+3
* o Add sysctls to enable/disable potentially dengerous key combinations, likeAleksandr Rybalko2014-09-101-9/+65
* Revert r269474. Special keyboard combinations should be handled by separateAleksandr Rybalko2014-09-092-18/+5
* vt(4): Change the terminal and buffer sizes, even without a fontJean-Sébastien Pédron2014-09-081-24/+35
* vt_vga: vd_setpixel_t and vd_drawrect_t are noop in text modeJean-Sébastien Pédron2014-09-051-0/+6
* vt(4): Indicate that KDSETRAD case falls through the next caseJean-Sébastien Pédron2014-08-291-0/+1
* vt(4): Change vb_history_size from "int" to "unsigned int"Jean-Sébastien Pédron2014-08-292-3/+3
* vt(4): If the terminal shrinks, make sure the mouse is inside the new areaJean-Sébastien Pédron2014-08-271-2/+13
* vt(4): Fix mouse cursor handling in vt_fb/creator_vt/ofwfbJean-Sébastien Pédron2014-08-272-33/+30
* vt(4): Recompute the drawable area when the resolution changesJean-Sébastien Pédron2014-08-271-3/+2
* vt(4): Pause the vt_flush() timer when the screen is up-to-dateJean-Sébastien Pédron2014-08-271-8/+29
* vt(4): Add cngrab() and cnungrab() callbacksJean-Sébastien Pédron2014-08-272-0/+67
* vt(4): Implement basic support for KDSETMODE ioctlJean-Sébastien Pédron2014-08-272-4/+23
* vt(4): When creating a window buffer, fill it entirelyJean-Sébastien Pédron2014-08-261-3/+3
* vt_vga: Use Write Mode 0 to draw group of 8 pixels using 3 or more colorsJean-Sébastien Pédron2014-08-251-47/+119
* vt(4): Intialize drawable area rectangle each time a font is loadedJean-Sébastien Pédron2014-08-251-14/+35
* vt(4): Store a rectangle for the drawable area, not just the top-left cornerJean-Sébastien Pédron2014-08-255-45/+60
* vt(4): The cursor coordinates are relative to the drawn areaJean-Sébastien Pédron2014-08-251-8/+4
* vt(4): Take font offset into account in vt_is_cursor_in_area()Jean-Sébastien Pédron2014-08-251-2/+2
* vt_vga: Fix the display of the splash screenJean-Sébastien Pédron2014-08-241-6/+7
* vt(4): Fix order of arguments (x <-> y) when showing the splash screenJean-Sébastien Pédron2014-08-241-1/+1