Config.in 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Console Utilities"
  6. config BUSYBOX_CHVT
  7. bool "chvt"
  8. default n
  9. help
  10. This program is used to change to another terminal.
  11. Example: chvt 4 (change to terminal /dev/tty4)
  12. config BUSYBOX_FGCONSOLE
  13. bool "fgconsole"
  14. default n
  15. help
  16. This program prints active (foreground) console number.
  17. config BUSYBOX_CLEAR
  18. bool "clear"
  19. default y
  20. help
  21. This program clears the terminal screen.
  22. config BUSYBOX_DEALLOCVT
  23. bool "deallocvt"
  24. default n
  25. help
  26. This program deallocates unused virtual consoles.
  27. config BUSYBOX_DUMPKMAP
  28. bool "dumpkmap"
  29. default n
  30. help
  31. This program dumps the kernel's keyboard translation table to
  32. stdout, in binary format. You can then use loadkmap to load it.
  33. config BUSYBOX_KBD_MODE
  34. bool "kbd_mode"
  35. default n
  36. help
  37. This program reports and sets keyboard mode.
  38. config BUSYBOX_LOADFONT
  39. bool "loadfont"
  40. default n
  41. help
  42. This program loads a console font from standard input.
  43. config BUSYBOX_LOADKMAP
  44. bool "loadkmap"
  45. default n
  46. help
  47. This program loads a keyboard translation table from
  48. standard input.
  49. config BUSYBOX_OPENVT
  50. bool "openvt"
  51. default n
  52. help
  53. This program is used to start a command on an unused
  54. virtual terminal.
  55. config BUSYBOX_RESET
  56. bool "reset"
  57. default y
  58. help
  59. This program is used to reset the terminal screen, if it
  60. gets messed up.
  61. config BUSYBOX_RESIZE
  62. bool "resize"
  63. default n
  64. help
  65. This program is used to (re)set the width and height of your current
  66. terminal.
  67. config BUSYBOX_FEATURE_RESIZE_PRINT
  68. bool "Print environment variables"
  69. default n
  70. depends on BUSYBOX_RESIZE
  71. help
  72. Prints the newly set size (number of columns and rows) of
  73. the terminal.
  74. E.g.:
  75. COLUMNS=80;LINES=44;export COLUMNS LINES;
  76. config BUSYBOX_SETCONSOLE
  77. bool "setconsole"
  78. default n
  79. help
  80. This program redirects the system console to another device,
  81. like the current tty while logged in via telnet.
  82. config BUSYBOX_FEATURE_SETCONSOLE_LONG_OPTIONS
  83. bool "Enable long options"
  84. default n
  85. depends on BUSYBOX_SETCONSOLE && BUSYBOX_LONG_OPTS
  86. help
  87. Support long options for the setconsole applet.
  88. config BUSYBOX_SETFONT
  89. bool "setfont"
  90. default n
  91. help
  92. Allows to load console screen map. Useful for i18n.
  93. config BUSYBOX_FEATURE_SETFONT_TEXTUAL_MAP
  94. bool "Support reading textual screen maps"
  95. default n
  96. depends on BUSYBOX_SETFONT
  97. help
  98. Support reading textual screen maps.
  99. config BUSYBOX_DEFAULT_SETFONT_DIR
  100. string "Default directory for console-tools files"
  101. default ""
  102. depends on BUSYBOX_SETFONT
  103. help
  104. Directory to use if setfont's params are simple filenames
  105. (not /path/to/file or ./file). Default is "" (no default directory).
  106. config BUSYBOX_SETKEYCODES
  107. bool "setkeycodes"
  108. default n
  109. help
  110. This program loads entries into the kernel's scancode-to-keycode
  111. map, allowing unusual keyboards to generate usable keycodes.
  112. config BUSYBOX_SETLOGCONS
  113. bool "setlogcons"
  114. default n
  115. help
  116. This program redirects the output console of kernel messages.
  117. config BUSYBOX_SHOWKEY
  118. bool "showkey"
  119. default n
  120. help
  121. Shows keys pressed.
  122. endmenu