summaryrefslogtreecommitdiffstats
path: root/usr.sbin/vidcontrol
Commit message (Collapse)AuthorAgeFilesLines
* WANRS=6 cleanup for vidcontrol(1):delphij2005-01-133-93/+95
| | | | | | | | | | | | | - Use foo(void) instead of foo(). - Use static where applicable. - Apply more const's when passing parameters - signed/unsigned madness - Avoid namespace collision by adding underscores. - For 64-bit architectures, use %zx instead of %x when necessary. - When storing constants, use const instead of variable. - Bump WARNS?= from 2 to 6
* Propagate ioctl() failure to exit statuseivind2003-09-181-7/+10
|
* mdoc(7) police: Nits.ru2003-03-021-2/+4
|
* Document the fact that VTY locking is easily bypassable when DDBmux2003-02-271-0/+4
| | | | is compiled in the kernel. Also add some useful xrefs to lock(1).
* Add a new `-H' modifier, which when combined with `-p' or `-P' allows to dumpsobomax2002-08-192-14/+38
| | | | full console history.
* Remove some missing words.dd2002-07-101-3/+3
| | | | Submitted by: roam
* Deuglify the usage message by making it look more like the synopsis indd2002-07-101-3/+4
| | | | the manual page.
* Add an -S option that allows the user to disable vty switching. It isdd2002-07-102-3/+29
| | | | | | | | | | implemented using a new VT_LOCKSWITCH ioctl. Although it is possible to implement something like this by VT_SETMODEing to VT_PROCESS and never releasing the vty, that method has a number of downsides, the biggest of which is that some program has to stay resident for the lock to be in effect. Reviewed by: roam, sheldonh
* Fix typo in the BSD copyright: s/withough/without/schweikh2002-06-022-2/+2
| | | | | Spotted and suggested by: des MFC after: 3 weeks
* Use `The .Nm utility'charnier2002-04-201-2/+4
|
* Fix typo: s/forth/fourth/bmah2002-03-211-1/+1
|
* Grammar nits.ru2002-03-201-3/+3
|
* When loading a font allow suffix specifying its size be omited, in whichsobomax2002-03-162-41/+47
| | | | | | | | | | case use size of the currently displaying font as a suffix. For example, when the when the size of the currently displayed font is 8x8 the following command will load koi8-r-8x8.fnt. # vidcontrol -f koi8-r MFC after: 2 weeks
* mdoc(7) police: markup nits.ru2001-09-101-2/+2
| | | | | PR: docs/30473 Submitted by: Jonathan Hanna <jhanna@home.com>
* mdoc(7) police:ru2001-09-041-24/+16
| | | | | | | | | 1) Removed the low-level (unneeded in this context) details on escape sequences that are already documented in screen(4). 2) Removed whitespace at EOL. 3) Removed the garbage from previous revision.
* Add additional information about VGA attributes.murray2001-09-041-31/+47
| | | | | PR: docs/28000 Submitted by: Robert Drehmel <robert@zoot.quizbot.org>
* The ports that convert screendumps into text or png called scr2*, notsobomax2001-08-171-2/+4
| | | | | | | shot2*. PR: Submitted by: Olexander Kunytsa
* mdoc(7) police: protect trailing full stops of abbreviationsru2001-08-101-2/+2
| | | | with a trailing zero-width space: `e.g.\&'.
* mdoc(7) police:ru2001-08-071-2/+4
| | | | | | | Avoid using parenthesis enclosure macros (.Pq and .Po/.Pc) with plain text. Not only this slows down the mdoc(7) processing significantly, but it also has an undesired (in this case) effect of disabling hyphenation within the entire enclosed block.
* Use the correct ioctl command to set a VESA mode.yokota2001-07-221-1/+3
| | | | | PR: 24423 MFC after: 10 days
* Remove GCC'isms in CFLAGS.obrien2001-07-201-2/+0
|
* Remove whitespace at EOL.dd2001-07-151-13/+13
|
* Add a comma between the two names in the CONTRIBUTERS section.dd2001-06-101-1/+1
|
* Add section "CONTRIBUTORS" and move nik and sobomax there, since we are notsobomax2001-05-291-0/+2
| | | | really "AUTHORS".
* Move the scrollback controls from kbdcontrol to vidcontrol.des2001-05-282-74/+105
| | | | | | Also fix some style bugs in the code and poor language in the man pages. Reviewed by: sobomax
* - Sort usage() output;sobomax2001-05-201-4/+7
| | | | | | | - sync usage() with reality and manpage; - display usage() even if terminal is not a syscons. Submitted by: ru, sobomax
* Spell FreeBSD.org correctly.ru2001-05-201-3/+3
|
* - Fix markup;sobomax2001-05-201-7/+12
| | | | | | - add nik into Authors section. Submitted by: ru
* Move scrshot(1) functionality into vidcontrol(1).sobomax2001-05-192-3/+222
| | | | | Suggested by: many Not objected to by: nik (scrshot co-author)
* Proper upper limit for mousechar start is UCHAR_MAX - 3, not UCHAR_MAXache2001-04-211-2/+2
| | | | | PR: 24437 Submitted by: Cejka Rudolf <cejkar@dcse.fee.vutbr.cz>
* mdoc(7) police: normalize .Nd.ru2001-04-181-1/+1
|
* List the explanations of the command line arguments in the same orderdd2001-04-181-27/+27
| | | | as they're listed in the synopsis (alphabetical).
* mdoc(7) police: Fixed markup.ru2001-04-131-5/+13
|
* Allow user to omit font size specification when loading a font. In additionsobomax2001-04-094-43/+131
| | | | | | | | | | | | | | | the following fixes had been made: - check the size of the font being loaded and compare it with possible sizes to minimise possibility of loading something that is not a fontfile at all and turning console screen into garbage; - prevent buffer overflow (and coredump as a result ) when loading valid uuencoded file with size that exceeds allocated buffer; - correct and improve several error messages. Approved by: -audit, -hackers (silently)
* Mention that the vga(4) driver supports 90-column video modes.dd2001-03-281-0/+10
| | | | | | PR: 26050 Submitted by: Alex Kapranoff <alex@kapran.bitmcnit.bryansk.su> Approved by: nik
* - Backout botched attempt to introduce MANSECT feature.ru2001-03-261-1/+0
| | | | - MAN[1-9] -> MAN.
* Set the default manual section for usr.sbin/ to 8.ru2001-03-201-0/+3
|
* Eliminate mdocNG warnings caused by misplaced or extraneous macro calls.ru2001-02-281-1/+1
|
* New option `-g' to allow selecting custom text geometry in VESA_800x600 rastersobomax2001-01-252-6/+53
| | | | | | | text mode. For example `vidcontrol -g 100x37 VESA_800x600' will setup 100x37 text mode as opposed to default 80x25. Reviewed by: imp
* mdoc(7) police: use certified section headers wherever possible.ru2000-11-171-2/+2
|
* Spell the sos's name correctly.ru2000-11-141-1/+1
|
* Avoid use of tbl(1).ru2000-11-061-13/+8
|
* Initiate deorbit burn sequence for <machine/console.h>.phk2000-10-081-1/+2
| | | | | | | | | Replace all in-tree uses with necessary subset of <sys/{fb,kb,cons}io.h>. This is also the appropriate fix for exo-tree sources. Put warnings in <machine/console.h> to discourage use. November 15th 2000 the warnings will be converted to errors. January 15th 2001 the <machine/console.h> files will be removed.
* Remove single-space hard sentence breaks. These degrade the qualitysheldonh2000-03-011-3/+6
| | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc.
* updates the vidcontrol man page to include mention of the new -M flagunfurl2000-02-171-0/+4
| | | | | PR: 16221 Submitted by: Kelly Yancey <kbyanc@posi.net>
* Make the mouse cursor char code configurable via the CONS_MOUSECTLyokota2000-01-121-4/+25
| | | | | | ioctl. By popular demand.
* Fix broken cross reference : kldload(1) -> kldload(8)phantom1999-10-301-1/+1
|
* -Wall fix: ambigious elsebillf1999-10-151-1/+2
|
* Various style and visual changes.phantom1999-09-241-8/+10
| | | | | VESA_132x30 is not available mode SC_PIXLE_MODE -> SC_PIXEL_MODE
* Fix -s option.yokota1999-09-191-1/+1
| | | | PR: bin/13799
OpenPOWER on IntegriCloud