diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-23 10:39:27 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2016-11-23 10:39:27 +0100 |
commit | 6d9329935c0621ddc056aee0d30cec52a24da499 (patch) | |
tree | 8b78faf3893c364337b138a9e8c20bfa4a286273 /console-tools/setkeycodes.c | |
parent | c19f7584e14522043da141189711c8db72dfbc90 (diff) | |
download | busybox-w32-6d9329935c0621ddc056aee0d30cec52a24da499.tar.gz busybox-w32-6d9329935c0621ddc056aee0d30cec52a24da499.tar.bz2 busybox-w32-6d9329935c0621ddc056aee0d30cec52a24da499.zip |
Convert all console-tools/* applets to "new style" applet definitions
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'console-tools/setkeycodes.c')
-rw-r--r-- | console-tools/setkeycodes.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/console-tools/setkeycodes.c b/console-tools/setkeycodes.c index a6a7c2374..11fc37ae9 100644 --- a/console-tools/setkeycodes.c +++ b/console-tools/setkeycodes.c | |||
@@ -8,6 +8,17 @@ | |||
8 | * | 8 | * |
9 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. | 9 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
10 | */ | 10 | */ |
11 | //config:config SETKEYCODES | ||
12 | //config: bool "setkeycodes" | ||
13 | //config: default y | ||
14 | //config: select PLATFORM_LINUX | ||
15 | //config: help | ||
16 | //config: This program loads entries into the kernel's scancode-to-keycode | ||
17 | //config: map, allowing unusual keyboards to generate usable keycodes. | ||
18 | |||
19 | //applet:IF_SETKEYCODES(APPLET(setkeycodes, BB_DIR_USR_BIN, BB_SUID_DROP)) | ||
20 | |||
21 | //kbuild:lib-$(CONFIG_SETKEYCODES) += setkeycodes.o | ||
11 | 22 | ||
12 | //usage:#define setkeycodes_trivial_usage | 23 | //usage:#define setkeycodes_trivial_usage |
13 | //usage: "SCANCODE KEYCODE..." | 24 | //usage: "SCANCODE KEYCODE..." |