diff options
author | Rob Landley <rob@landley.net> | 2008-01-19 17:08:39 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2008-01-19 17:08:39 -0600 |
commit | 2896480c4918f2accccb8301bec457a7bff7377e (patch) | |
tree | 622527b0fcb9b5ed9d8b7fb50db316dc00111b2c /toys/chvt.c | |
parent | 58ecc3e589c2edc0ef4f33d4419b0b2e7ac6a83d (diff) | |
download | toybox-2896480c4918f2accccb8301bec457a7bff7377e.tar.gz |
Zap toys/Config.in and instead create generated/Config.in from contents of
toys/*.c. Move relevant info into comment at the top of each toys/*.c. Also
convert more of Makefile into a thin wrapper around shell scripts that actually
do the work. (Makefile is only still there for the user interface.)
Diffstat (limited to 'toys/chvt.c')
-rw-r--r-- | toys/chvt.c | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/toys/chvt.c b/toys/chvt.c index 46040685..fbee3915 100644 --- a/toys/chvt.c +++ b/toys/chvt.c @@ -1,10 +1,23 @@ -/* vi: set sw=4 ts=4: */ -/* +/* vi: set sw=4 ts=4: + * * chvt.c switch virtual terminals * * Copyright (C) 2008 David Anders <danders@amltd.com> * - */ + * Not in SUSv3. + +config CHVT + bool "chvt" + default y + help + usage: chvt N + + Change to virtual terminal number N. (This only works in text mode.) + + Virtual terminals are the Linux VGA text mode displays, ordinarily + switched between via alt-F1, alt-F2, etc. Use ctrl-alt-F1 to switch + from X to a virtual terminal, and alt-F6 (or F7, or F8) to get back. +*/ #include "toys.h" |