diff options
author | Grigory Batalov <bga@altlinux.org> | 2010-05-23 23:22:10 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-05-23 23:22:10 +0200 |
commit | ad7a5d436c8dec563f834a0a9bdad9e69b333cc9 (patch) | |
tree | c28e639d7c526dca6ef6d29892b05a416f6b8286 /console-tools | |
parent | a85b66e0f906fedbba7fbaf5ea9ac0dbfc0e4916 (diff) | |
download | busybox-w32-ad7a5d436c8dec563f834a0a9bdad9e69b333cc9.tar.gz busybox-w32-ad7a5d436c8dec563f834a0a9bdad9e69b333cc9.tar.bz2 busybox-w32-ad7a5d436c8dec563f834a0a9bdad9e69b333cc9.zip |
fgconsole: new applet by Grigory Batalov <bga@altlinux.org>
function old new delta
fgconsole_main - 51 +51
applet_names 2227 2237 +10
applet_main 1304 1308 +4
applet_nameofs 652 654 +2
applet_install_loc 163 164 +1
packed_usage 27079 27073 -6
------------------------------------------------------------------------------
(add/remove: 2/0 grow/shrink: 4/1 up/down: 68/-6) Total: 62 bytes
Signed-off-by: Grigory Batalov <bga@altlinux.org>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'console-tools')
-rw-r--r-- | console-tools/Config.in | 6 | ||||
-rw-r--r-- | console-tools/Kbuild | 1 | ||||
-rw-r--r-- | console-tools/fgconsole.c | 30 |
3 files changed, 37 insertions, 0 deletions
diff --git a/console-tools/Config.in b/console-tools/Config.in index 195685b97..a7e995936 100644 --- a/console-tools/Config.in +++ b/console-tools/Config.in | |||
@@ -12,6 +12,12 @@ config CHVT | |||
12 | This program is used to change to another terminal. | 12 | This program is used to change to another terminal. |
13 | Example: chvt 4 (change to terminal /dev/tty4) | 13 | Example: chvt 4 (change to terminal /dev/tty4) |
14 | 14 | ||
15 | config FGCONSOLE | ||
16 | bool "fgconsole" | ||
17 | default n | ||
18 | help | ||
19 | This program prints active (foreground) console number. | ||
20 | |||
15 | config CLEAR | 21 | config CLEAR |
16 | bool "clear" | 22 | bool "clear" |
17 | default n | 23 | default n |
diff --git a/console-tools/Kbuild b/console-tools/Kbuild index df5ffdb96..ad8b8ce77 100644 --- a/console-tools/Kbuild +++ b/console-tools/Kbuild | |||
@@ -6,6 +6,7 @@ | |||
6 | 6 | ||
7 | lib-y:= | 7 | lib-y:= |
8 | lib-$(CONFIG_CHVT) += chvt.o | 8 | lib-$(CONFIG_CHVT) += chvt.o |
9 | lib-$(CONFIG_FGCONSOLE) += fgconsole.o | ||
9 | lib-$(CONFIG_CLEAR) += clear.o | 10 | lib-$(CONFIG_CLEAR) += clear.o |
10 | lib-$(CONFIG_DEALLOCVT) += deallocvt.o | 11 | lib-$(CONFIG_DEALLOCVT) += deallocvt.o |
11 | lib-$(CONFIG_DUMPKMAP) += dumpkmap.o | 12 | lib-$(CONFIG_DUMPKMAP) += dumpkmap.o |
diff --git a/console-tools/fgconsole.c b/console-tools/fgconsole.c new file mode 100644 index 000000000..75fd98fd5 --- /dev/null +++ b/console-tools/fgconsole.c | |||
@@ -0,0 +1,30 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
2 | /* | ||
3 | * Mini fgconsole implementation for busybox | ||
4 | * | ||
5 | * Copyright (C) 2010 by Grigory Batalov <bga@altlinux.org> | ||
6 | * | ||
7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | ||
8 | */ | ||
9 | |||
10 | #include "libbb.h" | ||
11 | |||
12 | /* From <linux/vt.h> */ | ||
13 | struct vt_stat { | ||
14 | unsigned short v_active; /* active vt */ | ||
15 | unsigned short v_signal; /* signal to send */ | ||
16 | unsigned short v_state; /* vt bitmask */ | ||
17 | }; | ||
18 | enum { VT_GETSTATE = 0x5603 }; /* get global vt state info */ | ||
19 | |||
20 | int fgconsole_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; | ||
21 | int fgconsole_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) | ||
22 | { | ||
23 | struct vt_stat vtstat; | ||
24 | |||
25 | vtstat.v_active = 0; | ||
26 | xioctl(get_console_fd_or_die(), VT_GETSTATE, &vtstat); | ||
27 | printf("%d\n", vtstat.v_active); | ||
28 | |||
29 | return EXIT_SUCCESS; | ||
30 | } | ||