Config.in 4.0 KB

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