Config.in 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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 y
  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 y
  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. default y if ADK_TARGET_WITH_INPUT
  42. select BUSYBOX_PLATFORM_LINUX
  43. help
  44. This program reports and sets keyboard mode.
  45. config BUSYBOX_LOADFONT
  46. bool "loadfont"
  47. default n
  48. select BUSYBOX_PLATFORM_LINUX
  49. help
  50. This program loads a console font from standard input.
  51. config BUSYBOX_LOADKMAP
  52. bool "loadkmap"
  53. default y if ADK_TARGET_WITH_INPUT
  54. default n
  55. select BUSYBOX_PLATFORM_LINUX
  56. help
  57. This program loads a keyboard translation table from
  58. standard input.
  59. config BUSYBOX_OPENVT
  60. bool "openvt"
  61. default y
  62. select BUSYBOX_PLATFORM_LINUX
  63. help
  64. This program is used to start a command on an unused
  65. virtual terminal.
  66. config BUSYBOX_RESET
  67. bool "reset"
  68. default y
  69. help
  70. This program is used to reset the terminal screen, if it
  71. gets messed up.
  72. config BUSYBOX_RESIZE
  73. bool "resize"
  74. default y
  75. help
  76. This program is used to (re)set the width and height of your current
  77. terminal.
  78. config BUSYBOX_FEATURE_RESIZE_PRINT
  79. bool "Print environment variables"
  80. default y
  81. depends on BUSYBOX_RESIZE
  82. help
  83. Prints the newly set size (number of columns and rows) of
  84. the terminal.
  85. E.g.:
  86. COLUMNS=80;LINES=44;export COLUMNS LINES;
  87. config BUSYBOX_SETCONSOLE
  88. bool "setconsole"
  89. default y
  90. select BUSYBOX_PLATFORM_LINUX
  91. help
  92. This program redirects the system console to another device,
  93. like the current tty while logged in via telnet.
  94. config BUSYBOX_FEATURE_SETCONSOLE_LONG_OPTIONS
  95. bool "Enable long options"
  96. default y
  97. depends on BUSYBOX_SETCONSOLE && BUSYBOX_LONG_OPTS
  98. help
  99. Support long options for the setconsole applet.
  100. config BUSYBOX_SETFONT
  101. bool "setfont"
  102. default n
  103. select BUSYBOX_PLATFORM_LINUX
  104. help
  105. Allows to load console screen map. Useful for i18n.
  106. config BUSYBOX_FEATURE_SETFONT_TEXTUAL_MAP
  107. bool "Support reading textual screen maps"
  108. default y
  109. depends on BUSYBOX_SETFONT
  110. help
  111. Support reading textual screen maps.
  112. config BUSYBOX_DEFAULT_SETFONT_DIR
  113. string "Default directory for console-tools files"
  114. default ""
  115. depends on BUSYBOX_SETFONT
  116. help
  117. Directory to use if setfont's params are simple filenames
  118. (not /path/to/file or ./file). Default is "" (no default directory).
  119. config BUSYBOX_SETKEYCODES
  120. bool "setkeycodes"
  121. default y
  122. select BUSYBOX_PLATFORM_LINUX
  123. help
  124. This program loads entries into the kernel's scancode-to-keycode
  125. map, allowing unusual keyboards to generate usable keycodes.
  126. config BUSYBOX_SETLOGCONS
  127. bool "setlogcons"
  128. default y
  129. select BUSYBOX_PLATFORM_LINUX
  130. help
  131. This program redirects the output console of kernel messages.
  132. config BUSYBOX_SHOWKEY
  133. bool "showkey"
  134. default y
  135. select BUSYBOX_PLATFORM_LINUX
  136. help
  137. Shows keys pressed.
  138. comment "Common options for loadfont and setfont"
  139. depends on BUSYBOX_LOADFONT || BUSYBOX_SETFONT
  140. config BUSYBOX_FEATURE_LOADFONT_PSF2
  141. bool "Support for PSF2 console fonts"
  142. default y
  143. depends on BUSYBOX_LOADFONT || BUSYBOX_SETFONT
  144. help
  145. Support PSF2 console fonts.
  146. config BUSYBOX_FEATURE_LOADFONT_RAW
  147. bool "Support for old (raw) console fonts"
  148. default y
  149. depends on BUSYBOX_LOADFONT || BUSYBOX_SETFONT
  150. help
  151. Support old (raw) console fonts.
  152. endmenu