Convert all console-tools/* applets to "new style" applet definitions
authorDenys Vlasenko <vda.linux@googlemail.com>
Wed, 23 Nov 2016 09:39:27 +0000 (10:39 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Wed, 23 Nov 2016 09:39:27 +0000 (10:39 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
18 files changed:
console-tools/Config.src
console-tools/Kbuild.src
console-tools/chvt.c
console-tools/clear.c
console-tools/deallocvt.c
console-tools/dumpkmap.c
console-tools/fgconsole.c
console-tools/kbd_mode.c
console-tools/loadfont.c
console-tools/loadkmap.c
console-tools/openvt.c
console-tools/reset.c
console-tools/resize.c
console-tools/setconsole.c
console-tools/setkeycodes.c
console-tools/setlogcons.c
console-tools/showkey.c
include/applets.src.h

index c65704478454913908079eacc344aad47cba0927..e6587ade4718ba03a17091271aac2ad37cc1f47b 100644 (file)
@@ -7,170 +7,4 @@ menu "Console Utilities"
 
 INSERT
 
-config CHVT
-       bool "chvt"
-       default y
-       select PLATFORM_LINUX
-       help
-         This program is used to change to another terminal.
-         Example: chvt 4 (change to terminal /dev/tty4)
-
-config FGCONSOLE
-       bool "fgconsole"
-       default y
-       select PLATFORM_LINUX
-       help
-         This program prints active (foreground) console number.
-
-config CLEAR
-       bool "clear"
-       default y
-       help
-         This program clears the terminal screen.
-
-config DEALLOCVT
-       bool "deallocvt"
-       default y
-       select PLATFORM_LINUX
-       help
-         This program deallocates unused virtual consoles.
-
-config DUMPKMAP
-       bool "dumpkmap"
-       default y
-       select PLATFORM_LINUX
-       help
-         This program dumps the kernel's keyboard translation table to
-         stdout, in binary format. You can then use loadkmap to load it.
-
-config KBD_MODE
-       bool "kbd_mode"
-       default y
-       select PLATFORM_LINUX
-       help
-         This program reports and sets keyboard mode.
-
-config LOADFONT
-       bool "loadfont"
-       default y
-       select PLATFORM_LINUX
-       help
-         This program loads a console font from standard input.
-
-config LOADKMAP
-       bool "loadkmap"
-       default y
-       select PLATFORM_LINUX
-       help
-         This program loads a keyboard translation table from
-         standard input.
-
-config OPENVT
-       bool "openvt"
-       default y
-       select PLATFORM_LINUX
-       help
-         This program is used to start a command on an unused
-         virtual terminal.
-
-config RESET
-       bool "reset"
-       default y
-       help
-         This program is used to reset the terminal screen, if it
-         gets messed up.
-
-config RESIZE
-       bool "resize"
-       default y
-       help
-         This program is used to (re)set the width and height of your current
-         terminal.
-
-config FEATURE_RESIZE_PRINT
-       bool "Print environment variables"
-       default y
-       depends on RESIZE
-       help
-         Prints the newly set size (number of columns and rows) of
-         the terminal.
-         E.g.:
-         COLUMNS=80;LINES=44;export COLUMNS LINES;
-
-config SETCONSOLE
-       bool "setconsole"
-       default y
-       select PLATFORM_LINUX
-       help
-         This program redirects the system console to another device,
-         like the current tty while logged in via telnet.
-
-config FEATURE_SETCONSOLE_LONG_OPTIONS
-       bool "Enable long options"
-       default y
-       depends on SETCONSOLE && LONG_OPTS
-       help
-         Support long options for the setconsole applet.
-
-config SETFONT
-       bool "setfont"
-       default y
-       select PLATFORM_LINUX
-       help
-         Allows to load console screen map. Useful for i18n.
-
-config FEATURE_SETFONT_TEXTUAL_MAP
-       bool "Support reading textual screen maps"
-       default y
-       depends on SETFONT
-       help
-         Support reading textual screen maps.
-
-config DEFAULT_SETFONT_DIR
-       string "Default directory for console-tools files"
-       default ""
-       depends on SETFONT
-       help
-         Directory to use if setfont's params are simple filenames
-         (not /path/to/file or ./file). Default is "" (no default directory).
-
-config SETKEYCODES
-       bool "setkeycodes"
-       default y
-       select PLATFORM_LINUX
-       help
-         This program loads entries into the kernel's scancode-to-keycode
-         map, allowing unusual keyboards to generate usable keycodes.
-
-config SETLOGCONS
-       bool "setlogcons"
-       default y
-       select PLATFORM_LINUX
-       help
-         This program redirects the output console of kernel messages.
-
-config SHOWKEY
-       bool "showkey"
-       default y
-       select PLATFORM_LINUX
-       help
-         Shows keys pressed.
-
-comment "Common options for loadfont and setfont"
-       depends on LOADFONT || SETFONT
-
-config FEATURE_LOADFONT_PSF2
-       bool "Support for PSF2 console fonts"
-       default y
-       depends on LOADFONT || SETFONT
-       help
-         Support PSF2 console fonts.
-
-config FEATURE_LOADFONT_RAW
-       bool "Support for old (raw) console fonts"
-       default y
-       depends on LOADFONT || SETFONT
-       help
-         Support old (raw) console fonts.
-
 endmenu
index 94de9ad9f88edf5846ca319d1a423dcdc8fe1f44..6b4fb747007c3f8819fe2a060e7cc4d8547dcb98 100644 (file)
@@ -7,19 +7,3 @@
 lib-y:=
 
 INSERT
-lib-$(CONFIG_CHVT)             += chvt.o
-lib-$(CONFIG_FGCONSOLE)                += fgconsole.o
-lib-$(CONFIG_CLEAR)            += clear.o
-lib-$(CONFIG_DEALLOCVT)                += deallocvt.o
-lib-$(CONFIG_DUMPKMAP)         += dumpkmap.o
-lib-$(CONFIG_SETCONSOLE)       += setconsole.o
-lib-$(CONFIG_KBD_MODE)         += kbd_mode.o
-lib-$(CONFIG_LOADFONT)         += loadfont.o
-lib-$(CONFIG_LOADKMAP)         += loadkmap.o
-lib-$(CONFIG_OPENVT)           += openvt.o
-lib-$(CONFIG_RESET)            += reset.o
-lib-$(CONFIG_RESIZE)           += resize.o
-lib-$(CONFIG_SETFONT)          += loadfont.o
-lib-$(CONFIG_SETKEYCODES)      += setkeycodes.o
-lib-$(CONFIG_SETLOGCONS)       += setlogcons.o
-lib-$(CONFIG_SHOWKEY)          += showkey.o
index b9c974f4a49e9f29b1d7ad3fbc355b24f4b72858..2b993eb629fc4b1aae1512626d2780e99030e661 100644 (file)
@@ -6,6 +6,17 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
+//config:config CHVT
+//config:      bool "chvt"
+//config:      default y
+//config:      select PLATFORM_LINUX
+//config:      help
+//config:        This program is used to change to another terminal.
+//config:        Example: chvt 4 (change to terminal /dev/tty4)
+
+//applet:IF_CHVT(APPLET(chvt, BB_DIR_USR_BIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_CHVT) += chvt.o
 
 //usage:#define chvt_trivial_usage
 //usage:       "N"
index ac22b787e84e829a183d83ba3f677f5534cf8d3f..b360d34d94a0b60130724b368c403735203c7e81 100644 (file)
@@ -6,6 +6,15 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
+//config:config CLEAR
+//config:      bool "clear"
+//config:      default y
+//config:      help
+//config:        This program clears the terminal screen.
+
+//applet:IF_CLEAR(APPLET(clear, BB_DIR_USR_BIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_CLEAR) += clear.o
 
 //usage:#define clear_trivial_usage
 //usage:       ""
index b131c0a64985e61adc42948b0a65d527b8655f0c..37c966af33560ece1b9653b3298158e0624bf1a1 100644 (file)
@@ -7,8 +7,16 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
+//config:config DEALLOCVT
+//config:      bool "deallocvt"
+//config:      default y
+//config:      select PLATFORM_LINUX
+//config:      help
+//config:        This program deallocates unused virtual consoles.
 
-/* no options, no getopt */
+//applet:IF_DEALLOCVT(APPLET(deallocvt, BB_DIR_USR_BIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_DEALLOCVT) += deallocvt.o
 
 //usage:#define deallocvt_trivial_usage
 //usage:       "[N]"
index b6fd466dc8a83f63b8e0e5a8101b71e24d2f0bbc..4a249868a12d2cb0ad586024aef6aecde29714a9 100644 (file)
@@ -7,7 +7,17 @@
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  *
  */
-/* no options, no getopt */
+//config:config DUMPKMAP
+//config:      bool "dumpkmap"
+//config:      default y
+//config:      select PLATFORM_LINUX
+//config:      help
+//config:        This program dumps the kernel's keyboard translation table to
+//config:        stdout, in binary format. You can then use loadkmap to load it.
+
+//applet:IF_DUMPKMAP(APPLET(dumpkmap, BB_DIR_BIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_DUMPKMAP) += dumpkmap.o
 
 //usage:#define dumpkmap_trivial_usage
 //usage:       "> keymap"
index 54355bee61f94cffe14a75f71130eb65b879d8a9..019761726dfaa43a193dd6707aaf6d11f8a55536 100644 (file)
@@ -6,6 +6,16 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
+//config:config FGCONSOLE
+//config:      bool "fgconsole"
+//config:      default y
+//config:      select PLATFORM_LINUX
+//config:      help
+//config:        This program prints active (foreground) console number.
+
+//applet:IF_FGCONSOLE(APPLET(fgconsole, BB_DIR_USR_BIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_FGCONSOLE) += fgconsole.o
 
 //usage:#define fgconsole_trivial_usage
 //usage:       ""
index 13853672129d0837cdd44cc74091eb79c994f045..f1238c6b46bd035a5d22b237aa61aad3e0477570 100644 (file)
@@ -8,6 +8,16 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
+//config:config KBD_MODE
+//config:      bool "kbd_mode"
+//config:      default y
+//config:      select PLATFORM_LINUX
+//config:      help
+//config:        This program reports and sets keyboard mode.
+
+//applet:IF_KBD_MODE(APPLET(kbd_mode, BB_DIR_BIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_KBD_MODE) += kbd_mode.o
 
 //usage:#define kbd_mode_trivial_usage
 //usage:       "[-a|k|s|u] [-C TTY]"
index 58073e0dc068c3a92fe8f25fe6d9a714db96ad0c..52605baa198ff843687ae32a75a46f43f0c4582e 100644 (file)
@@ -9,6 +9,57 @@
  *
  * Licensed under GPLv2, see file LICENSE in this source tree.
  */
+//config:config LOADFONT
+//config:      bool "loadfont"
+//config:      default y
+//config:      select PLATFORM_LINUX
+//config:      help
+//config:        This program loads a console font from standard input.
+//config:
+//config:config SETFONT
+//config:      bool "setfont"
+//config:      default y
+//config:      select PLATFORM_LINUX
+//config:      help
+//config:        Allows to load console screen map. Useful for i18n.
+//config:
+//config:config FEATURE_SETFONT_TEXTUAL_MAP
+//config:      bool "Support reading textual screen maps"
+//config:      default y
+//config:      depends on SETFONT
+//config:      help
+//config:        Support reading textual screen maps.
+//config:
+//config:config DEFAULT_SETFONT_DIR
+//config:      string "Default directory for console-tools files"
+//config:      default ""
+//config:      depends on SETFONT
+//config:      help
+//config:        Directory to use if setfont's params are simple filenames
+//config:        (not /path/to/file or ./file). Default is "" (no default directory).
+//config:
+//config:comment "Common options for loadfont and setfont"
+//config:      depends on LOADFONT || SETFONT
+//config:
+//config:config FEATURE_LOADFONT_PSF2
+//config:      bool "Support for PSF2 console fonts"
+//config:      default y
+//config:      depends on LOADFONT || SETFONT
+//config:      help
+//config:        Support PSF2 console fonts.
+//config:
+//config:config FEATURE_LOADFONT_RAW
+//config:      bool "Support for old (raw) console fonts"
+//config:      default y
+//config:      depends on LOADFONT || SETFONT
+//config:      help
+//config:        Support old (raw) console fonts.
+
+//applet:IF_LOADFONT(APPLET(loadfont, BB_DIR_USR_SBIN, BB_SUID_DROP))
+//applet:IF_SETFONT(APPLET(setfont, BB_DIR_USR_SBIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_LOADFONT) += loadfont.o
+//kbuild:lib-$(CONFIG_SETFONT) += loadfont.o
 
 //usage:#define loadfont_trivial_usage
 //usage:       "< font"
index f525ee5d11f52abe32d9b8b7596194b741a67ca5..70ab55a8e88cb0a2980ec7d0aa35612cd852f2f4 100644 (file)
@@ -6,6 +6,17 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
+//config:config LOADKMAP
+//config:      bool "loadkmap"
+//config:      default y
+//config:      select PLATFORM_LINUX
+//config:      help
+//config:        This program loads a keyboard translation table from
+//config:        standard input.
+
+//applet:IF_LOADKMAP(APPLET(loadkmap, BB_DIR_SBIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_LOADKMAP) += loadkmap.o
 
 //usage:#define loadkmap_trivial_usage
 //usage:       "< keymap"
index e523566926c01b2fd323bddf7beb83a8f4d72118..5cbc717ec94ecf0d34e2cee6d836b68bf772a96e 100644 (file)
@@ -7,6 +7,17 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
+//config:config OPENVT
+//config:      bool "openvt"
+//config:      default y
+//config:      select PLATFORM_LINUX
+//config:      help
+//config:        This program is used to start a command on an unused
+//config:        virtual terminal.
+
+//applet:IF_OPENVT(APPLET(openvt, BB_DIR_USR_BIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_OPENVT) += openvt.o
 
 //usage:#define openvt_trivial_usage
 //usage:       "[-c N] [-sw] [PROG ARGS]"
index 65940bdec5db4ecfbe268b110c422c6d1c085c8c..57cebb4ea9ce59105a7aab38aad203ea01cee2b5 100644 (file)
@@ -7,9 +7,18 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
+/* "Standard" version of this tool is in ncurses package */
 
-/* BTW, which "standard" package has this utility? It doesn't seem
- * to be ncurses, coreutils, console-tools... then what? */
+//config:config RESET
+//config:      bool "reset"
+//config:      default y
+//config:      help
+//config:        This program is used to reset the terminal screen, if it
+//config:        gets messed up.
+
+//applet:IF_RESET(APPLET(reset, BB_DIR_USR_BIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_RESET) += reset.o
 
 //usage:#define reset_trivial_usage
 //usage:       ""
index a3342a1956bc43550450a98e850e8d79777afaee..567086f09cd4f711255b9bea6143abda0e253d91 100644 (file)
@@ -6,7 +6,26 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
-/* no options, no getopt */
+//config:config RESIZE
+//config:      bool "resize"
+//config:      default y
+//config:      help
+//config:        This program is used to (re)set the width and height of your current
+//config:        terminal.
+//config:
+//config:config FEATURE_RESIZE_PRINT
+//config:      bool "Print environment variables"
+//config:      default y
+//config:      depends on RESIZE
+//config:      help
+//config:        Prints the newly set size (number of columns and rows) of
+//config:        the terminal.
+//config:        E.g.:
+//config:        COLUMNS=80;LINES=44;export COLUMNS LINES;
+
+//applet:IF_RESIZE(APPLET(resize, BB_DIR_USR_BIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_RESIZE) += resize.o
 
 //usage:#define resize_trivial_usage
 //usage:       ""
index c0051dcc8c1d2a0f64e484bac80a726e5cd172b4..58057268d29eb5f2622ab9686e58afb346650730 100644 (file)
@@ -7,6 +7,24 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
+//config:config SETCONSOLE
+//config:      bool "setconsole"
+//config:      default y
+//config:      select PLATFORM_LINUX
+//config:      help
+//config:        This program redirects the system console to another device,
+//config:        like the current tty while logged in via telnet.
+//config:
+//config:config FEATURE_SETCONSOLE_LONG_OPTIONS
+//config:      bool "Enable long options"
+//config:      default y
+//config:      depends on SETCONSOLE && LONG_OPTS
+//config:      help
+//config:        Support long options for the setconsole applet.
+
+//applet:IF_SETCONSOLE(APPLET(setconsole, BB_DIR_SBIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_SETCONSOLE) += setconsole.o
 
 //usage:#define setconsole_trivial_usage
 //usage:       "[-r" IF_FEATURE_SETCONSOLE_LONG_OPTIONS("|--reset") "] [DEVICE]"
index a6a7c237438b89d6722e73e32e1ff6daf41a9205..11fc37ae9609f3496c871baf75079744f1a8fef7 100644 (file)
@@ -8,6 +8,17 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
+//config:config SETKEYCODES
+//config:      bool "setkeycodes"
+//config:      default y
+//config:      select PLATFORM_LINUX
+//config:      help
+//config:        This program loads entries into the kernel's scancode-to-keycode
+//config:        map, allowing unusual keyboards to generate usable keycodes.
+
+//applet:IF_SETKEYCODES(APPLET(setkeycodes, BB_DIR_USR_BIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_SETKEYCODES) += setkeycodes.o
 
 //usage:#define setkeycodes_trivial_usage
 //usage:       "SCANCODE KEYCODE..."
index 2a11da32966dae878ef24b5ea98462d56be8c4da..2ea36f0397c1f3df51ff431e59675fc1d84203ba 100644 (file)
@@ -8,6 +8,16 @@
  *
  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
+//config:config SETLOGCONS
+//config:      bool "setlogcons"
+//config:      default y
+//config:      select PLATFORM_LINUX
+//config:      help
+//config:        This program redirects the output console of kernel messages.
+
+//applet:IF_SETLOGCONS(APPLET(setlogcons, BB_DIR_USR_SBIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_SETLOGCONS) += setlogcons.o
 
 //usage:#define setlogcons_trivial_usage
 //usage:       "[N]"
index b7b4c32a803daf576bf8b9387695998cae10fc31..c2447b88703d9d771541fc3593d0268348a68735 100644 (file)
@@ -6,6 +6,16 @@
  *
  * Licensed under GPLv2, see file LICENSE in this source tree.
  */
+//config:config SHOWKEY
+//config:      bool "showkey"
+//config:      default y
+//config:      select PLATFORM_LINUX
+//config:      help
+//config:        Shows keys pressed.
+
+//applet:IF_SHOWKEY(APPLET(showkey, BB_DIR_USR_BIN, BB_SUID_DROP))
+
+//kbuild:lib-$(CONFIG_SHOWKEY) += showkey.o
 
 //usage:#define showkey_trivial_usage
 //usage:       "[-a | -k | -s]"
index 83f6237b20acd5690cc65a5eb57d4a5679ec8db4..adce804e5ecbf806b5664d2fb5147f2a83e8c01c 100644 (file)
@@ -86,21 +86,17 @@ IF_CHGRP(APPLET_NOEXEC(chgrp, chgrp, BB_DIR_BIN, BB_SUID_DROP, chgrp))
 IF_CHMOD(APPLET_NOEXEC(chmod, chmod, BB_DIR_BIN, BB_SUID_DROP, chmod))
 IF_CHOWN(APPLET_NOEXEC(chown, chown, BB_DIR_BIN, BB_SUID_DROP, chown))
 IF_CHROOT(APPLET(chroot, BB_DIR_USR_SBIN, BB_SUID_DROP))
-IF_CHVT(APPLET(chvt, BB_DIR_USR_BIN, BB_SUID_DROP))
 IF_CKSUM(APPLET_NOEXEC(cksum, cksum, BB_DIR_USR_BIN, BB_SUID_DROP, cksum))
-IF_CLEAR(APPLET(clear, BB_DIR_USR_BIN, BB_SUID_DROP))
 IF_COMM(APPLET(comm, BB_DIR_USR_BIN, BB_SUID_DROP))
 IF_CP(APPLET_NOEXEC(cp, cp, BB_DIR_BIN, BB_SUID_DROP, cp))
 IF_CUT(APPLET_NOEXEC(cut, cut, BB_DIR_USR_BIN, BB_SUID_DROP, cut))
 IF_DD(APPLET_NOEXEC(dd, dd, BB_DIR_BIN, BB_SUID_DROP, dd))
-IF_DEALLOCVT(APPLET(deallocvt, BB_DIR_USR_BIN, BB_SUID_DROP))
 IF_DF(APPLET(df, BB_DIR_BIN, BB_SUID_DROP))
 IF_DHCPRELAY(APPLET(dhcprelay, BB_DIR_USR_SBIN, BB_SUID_DROP))
 IF_DIRNAME(APPLET_NOFORK(dirname, dirname, BB_DIR_USR_BIN, BB_SUID_DROP, dirname))
 IF_DMESG(APPLET(dmesg, BB_DIR_BIN, BB_SUID_DROP))
 IF_DOS2UNIX(APPLET_NOEXEC(dos2unix, dos2unix, BB_DIR_USR_BIN, BB_SUID_DROP, dos2unix))
 IF_DU(APPLET(du, BB_DIR_USR_BIN, BB_SUID_DROP))
-IF_DUMPKMAP(APPLET(dumpkmap, BB_DIR_BIN, BB_SUID_DROP))
 IF_DUMPLEASES(APPLET(dumpleases, BB_DIR_USR_BIN, BB_SUID_DROP))
 //IF_E2FSCK(APPLET(e2fsck, BB_DIR_SBIN, BB_SUID_DROP))
 //IF_E2LABEL(APPLET_ODDNAME(e2label, tune2fs, BB_DIR_SBIN, BB_SUID_DROP, e2label))
@@ -113,7 +109,6 @@ IF_FBSET(APPLET(fbset, BB_DIR_USR_SBIN, BB_SUID_DROP))
 IF_FDFLUSH(APPLET_ODDNAME(fdflush, freeramdisk, BB_DIR_BIN, BB_SUID_DROP, fdflush))
 IF_FDFORMAT(APPLET(fdformat, BB_DIR_USR_SBIN, BB_SUID_DROP))
 IF_FDISK(APPLET(fdisk, BB_DIR_SBIN, BB_SUID_DROP))
-IF_FGCONSOLE(APPLET(fgconsole, BB_DIR_USR_BIN, BB_SUID_DROP))
 /* Benefits from suid root: better access to /dev/BLOCKDEVs: */
 IF_FINDFS(APPLET(findfs, BB_DIR_SBIN, BB_SUID_MAYBE))
 IF_FLOCK(APPLET(flock, BB_DIR_USR_BIN, BB_SUID_DROP))
@@ -133,12 +128,9 @@ IF_HWCLOCK(APPLET(hwclock, BB_DIR_SBIN, BB_SUID_DROP))
 IF_INSTALL(APPLET(install, BB_DIR_USR_BIN, BB_SUID_DROP))
 IF_IPCRM(APPLET(ipcrm, BB_DIR_USR_BIN, BB_SUID_DROP))
 IF_IPCS(APPLET(ipcs, BB_DIR_USR_BIN, BB_SUID_DROP))
-IF_KBD_MODE(APPLET(kbd_mode, BB_DIR_BIN, BB_SUID_DROP))
 //IF_LENGTH(APPLET_NOFORK(length, length, BB_DIR_USR_BIN, BB_SUID_DROP, length))
 IF_LN(APPLET_NOEXEC(ln, ln, BB_DIR_BIN, BB_SUID_DROP, ln))
 IF_LOAD_POLICY(APPLET(load_policy, BB_DIR_USR_SBIN, BB_SUID_DROP))
-IF_LOADFONT(APPLET(loadfont, BB_DIR_USR_SBIN, BB_SUID_DROP))
-IF_LOADKMAP(APPLET(loadkmap, BB_DIR_SBIN, BB_SUID_DROP))
 IF_LOGNAME(APPLET_NOFORK(logname, logname, BB_DIR_USR_BIN, BB_SUID_DROP, logname))
 IF_LOSETUP(APPLET(losetup, BB_DIR_SBIN, BB_SUID_DROP))
 IF_LS(APPLET_NOEXEC(ls, ls, BB_DIR_BIN, BB_SUID_DROP, ls))
@@ -161,7 +153,6 @@ IF_MV(APPLET(mv, BB_DIR_BIN, BB_SUID_DROP))
 IF_NICE(APPLET(nice, BB_DIR_BIN, BB_SUID_DROP))
 IF_NOHUP(APPLET(nohup, BB_DIR_USR_BIN, BB_SUID_DROP))
 IF_OD(APPLET(od, BB_DIR_USR_BIN, BB_SUID_DROP))
-IF_OPENVT(APPLET(openvt, BB_DIR_USR_BIN, BB_SUID_DROP))
 //IF_PARSE(APPLET(parse, BB_DIR_USR_BIN, BB_SUID_DROP))
 IF_PIVOT_ROOT(APPLET(pivot_root, BB_DIR_SBIN, BB_SUID_DROP))
 IF_PRINTENV(APPLET_NOFORK(printenv, printenv, BB_DIR_BIN, BB_SUID_DROP, printenv))
@@ -172,8 +163,6 @@ IF_RDEV(APPLET(rdev, BB_DIR_USR_SBIN, BB_SUID_DROP))
 IF_READLINK(APPLET(readlink, BB_DIR_USR_BIN, BB_SUID_DROP))
 IF_READPROFILE(APPLET(readprofile, BB_DIR_USR_SBIN, BB_SUID_DROP))
 IF_REALPATH(APPLET(realpath, BB_DIR_USR_BIN, BB_SUID_DROP))
-IF_RESET(APPLET(reset, BB_DIR_USR_BIN, BB_SUID_DROP))
-IF_RESIZE(APPLET(resize, BB_DIR_USR_BIN, BB_SUID_DROP))
 IF_RESTORECON(APPLET_ODDNAME(restorecon, setfiles, BB_DIR_SBIN, BB_SUID_DROP, restorecon))
 IF_RM(APPLET_NOFORK(rm, rm, BB_DIR_BIN, BB_SUID_DROP, rm))
 IF_RMDIR(APPLET_NOFORK(rmdir, rmdir, BB_DIR_BIN, BB_SUID_DROP, rmdir))
@@ -184,14 +173,9 @@ IF_SCRIPTREPLAY(APPLET(scriptreplay, BB_DIR_BIN, BB_SUID_DROP))
 IF_SELINUXENABLED(APPLET(selinuxenabled, BB_DIR_USR_SBIN, BB_SUID_DROP))
 IF_SEQ(APPLET_NOFORK(seq, seq, BB_DIR_USR_BIN, BB_SUID_DROP, seq))
 IF_SESTATUS(APPLET(sestatus, BB_DIR_USR_SBIN, BB_SUID_DROP))
-IF_SETCONSOLE(APPLET(setconsole, BB_DIR_SBIN, BB_SUID_DROP))
 IF_SETENFORCE(APPLET(setenforce, BB_DIR_USR_SBIN, BB_SUID_DROP))
 IF_SETFILES(APPLET(setfiles, BB_DIR_SBIN, BB_SUID_DROP))
-IF_SETFONT(APPLET(setfont, BB_DIR_USR_SBIN, BB_SUID_DROP))
-IF_SETKEYCODES(APPLET(setkeycodes, BB_DIR_USR_BIN, BB_SUID_DROP))
-IF_SETLOGCONS(APPLET(setlogcons, BB_DIR_USR_SBIN, BB_SUID_DROP))
 IF_SETSEBOOL(APPLET(setsebool, BB_DIR_USR_SBIN, BB_SUID_DROP))
-IF_SHOWKEY(APPLET(showkey, BB_DIR_USR_BIN, BB_SUID_DROP))
 /* Do not make this applet NOFORK. It breaks ^C-ing of pauses in shells: */
 IF_SLEEP(APPLET(sleep, BB_DIR_BIN, BB_SUID_DROP))
 IF_SORT(APPLET_NOEXEC(sort, sort, BB_DIR_USR_BIN, BB_SUID_DROP, sort))