diff options
author | Jeremie Koenig <jk@jk.fr.eu.org> | 2010-07-19 00:44:56 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-07-19 00:44:56 +0200 |
commit | 1d7266d3b59be361763dab61f680103bbb70f3e9 (patch) | |
tree | 631f533af2f9ceb9ba8d5cfcc978a3c33a0393cc /console-tools/Config.src | |
parent | b175462422f02a159a14dc5561d8bef6f84b2b66 (diff) | |
download | busybox-w32-1d7266d3b59be361763dab61f680103bbb70f3e9.tar.gz busybox-w32-1d7266d3b59be361763dab61f680103bbb70f3e9.tar.bz2 busybox-w32-1d7266d3b59be361763dab61f680103bbb70f3e9.zip |
mark Linux-specific configuration options
PLATFORM_LINUX is used as a dependency for applets or features
which require Linux-specific interfaces.
Signed-off-by: Jeremie Koenig <jk@jk.fr.eu.org>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'console-tools/Config.src')
-rw-r--r-- | console-tools/Config.src | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/console-tools/Config.src b/console-tools/Config.src index 6e3191ada..cdb26800e 100644 --- a/console-tools/Config.src +++ b/console-tools/Config.src | |||
@@ -10,6 +10,7 @@ INSERT | |||
10 | config CHVT | 10 | config CHVT |
11 | bool "chvt" | 11 | bool "chvt" |
12 | default y | 12 | default y |
13 | depends on PLATFORM_LINUX | ||
13 | help | 14 | help |
14 | This program is used to change to another terminal. | 15 | This program is used to change to another terminal. |
15 | Example: chvt 4 (change to terminal /dev/tty4) | 16 | Example: chvt 4 (change to terminal /dev/tty4) |
@@ -17,6 +18,7 @@ config CHVT | |||
17 | config FGCONSOLE | 18 | config FGCONSOLE |
18 | bool "fgconsole" | 19 | bool "fgconsole" |
19 | default y | 20 | default y |
21 | depends on PLATFORM_LINUX | ||
20 | help | 22 | help |
21 | This program prints active (foreground) console number. | 23 | This program prints active (foreground) console number. |
22 | 24 | ||
@@ -29,12 +31,14 @@ config CLEAR | |||
29 | config DEALLOCVT | 31 | config DEALLOCVT |
30 | bool "deallocvt" | 32 | bool "deallocvt" |
31 | default y | 33 | default y |
34 | depends on PLATFORM_LINUX | ||
32 | help | 35 | help |
33 | This program deallocates unused virtual consoles. | 36 | This program deallocates unused virtual consoles. |
34 | 37 | ||
35 | config DUMPKMAP | 38 | config DUMPKMAP |
36 | bool "dumpkmap" | 39 | bool "dumpkmap" |
37 | default y | 40 | default y |
41 | depends on PLATFORM_LINUX | ||
38 | help | 42 | help |
39 | This program dumps the kernel's keyboard translation table to | 43 | This program dumps the kernel's keyboard translation table to |
40 | stdout, in binary format. You can then use loadkmap to load it. | 44 | stdout, in binary format. You can then use loadkmap to load it. |
@@ -42,18 +46,21 @@ config DUMPKMAP | |||
42 | config KBD_MODE | 46 | config KBD_MODE |
43 | bool "kbd_mode" | 47 | bool "kbd_mode" |
44 | default y | 48 | default y |
49 | depends on PLATFORM_LINUX | ||
45 | help | 50 | help |
46 | This program reports and sets keyboard mode. | 51 | This program reports and sets keyboard mode. |
47 | 52 | ||
48 | config LOADFONT | 53 | config LOADFONT |
49 | bool "loadfont" | 54 | bool "loadfont" |
50 | default y | 55 | default y |
56 | depends on PLATFORM_LINUX | ||
51 | help | 57 | help |
52 | This program loads a console font from standard input. | 58 | This program loads a console font from standard input. |
53 | 59 | ||
54 | config LOADKMAP | 60 | config LOADKMAP |
55 | bool "loadkmap" | 61 | bool "loadkmap" |
56 | default y | 62 | default y |
63 | depends on PLATFORM_LINUX | ||
57 | help | 64 | help |
58 | This program loads a keyboard translation table from | 65 | This program loads a keyboard translation table from |
59 | standard input. | 66 | standard input. |
@@ -61,6 +68,7 @@ config LOADKMAP | |||
61 | config OPENVT | 68 | config OPENVT |
62 | bool "openvt" | 69 | bool "openvt" |
63 | default y | 70 | default y |
71 | depends on PLATFORM_LINUX | ||
64 | help | 72 | help |
65 | This program is used to start a command on an unused | 73 | This program is used to start a command on an unused |
66 | virtual terminal. | 74 | virtual terminal. |
@@ -92,6 +100,7 @@ config FEATURE_RESIZE_PRINT | |||
92 | config SETCONSOLE | 100 | config SETCONSOLE |
93 | bool "setconsole" | 101 | bool "setconsole" |
94 | default y | 102 | default y |
103 | depends on PLATFORM_LINUX | ||
95 | help | 104 | help |
96 | This program redirects the system console to another device, | 105 | This program redirects the system console to another device, |
97 | like the current tty while logged in via telnet. | 106 | like the current tty while logged in via telnet. |
@@ -106,6 +115,7 @@ config FEATURE_SETCONSOLE_LONG_OPTIONS | |||
106 | config SETFONT | 115 | config SETFONT |
107 | bool "setfont" | 116 | bool "setfont" |
108 | default y | 117 | default y |
118 | depends on PLATFORM_LINUX | ||
109 | help | 119 | help |
110 | Allows to load console screen map. Useful for i18n. | 120 | Allows to load console screen map. Useful for i18n. |
111 | 121 | ||
@@ -127,6 +137,7 @@ config DEFAULT_SETFONT_DIR | |||
127 | config SETKEYCODES | 137 | config SETKEYCODES |
128 | bool "setkeycodes" | 138 | bool "setkeycodes" |
129 | default y | 139 | default y |
140 | depends on PLATFORM_LINUX | ||
130 | help | 141 | help |
131 | This program loads entries into the kernel's scancode-to-keycode | 142 | This program loads entries into the kernel's scancode-to-keycode |
132 | map, allowing unusual keyboards to generate usable keycodes. | 143 | map, allowing unusual keyboards to generate usable keycodes. |
@@ -134,12 +145,14 @@ config SETKEYCODES | |||
134 | config SETLOGCONS | 145 | config SETLOGCONS |
135 | bool "setlogcons" | 146 | bool "setlogcons" |
136 | default y | 147 | default y |
148 | depends on PLATFORM_LINUX | ||
137 | help | 149 | help |
138 | This program redirects the output console of kernel messages. | 150 | This program redirects the output console of kernel messages. |
139 | 151 | ||
140 | config SHOWKEY | 152 | config SHOWKEY |
141 | bool "showkey" | 153 | bool "showkey" |
142 | default y | 154 | default y |
155 | depends on PLATFORM_LINUX | ||
143 | help | 156 | help |
144 | Shows keys pressed. | 157 | Shows keys pressed. |
145 | 158 | ||