Config.in 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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_CONFIG_CHVT
  8. bool "chvt"
  9. default BUSYBOX_DEFAULT_CHVT
  10. select BUSYBOX_CONFIG_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_CONFIG_FGCONSOLE
  15. bool "fgconsole"
  16. default BUSYBOX_DEFAULT_FGCONSOLE
  17. select BUSYBOX_CONFIG_PLATFORM_LINUX
  18. help
  19. This program prints active (foreground) console number.
  20. config BUSYBOX_CONFIG_CLEAR
  21. bool "clear"
  22. default BUSYBOX_DEFAULT_CLEAR
  23. help
  24. This program clears the terminal screen.
  25. config BUSYBOX_CONFIG_DEALLOCVT
  26. bool "deallocvt"
  27. default BUSYBOX_DEFAULT_DEALLOCVT
  28. select BUSYBOX_CONFIG_PLATFORM_LINUX
  29. help
  30. This program deallocates unused virtual consoles.
  31. config BUSYBOX_CONFIG_DUMPKMAP
  32. bool "dumpkmap"
  33. default BUSYBOX_DEFAULT_DUMPKMAP
  34. select BUSYBOX_CONFIG_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_CONFIG_KBD_MODE
  39. bool "kbd_mode"
  40. default BUSYBOX_DEFAULT_KBD_MODE
  41. select BUSYBOX_CONFIG_PLATFORM_LINUX
  42. help
  43. This program reports and sets keyboard mode.
  44. config BUSYBOX_CONFIG_LOADFONT
  45. bool "loadfont"
  46. default BUSYBOX_DEFAULT_LOADFONT
  47. select BUSYBOX_CONFIG_PLATFORM_LINUX
  48. help
  49. This program loads a console font from standard input.
  50. config BUSYBOX_CONFIG_LOADKMAP
  51. bool "loadkmap"
  52. default BUSYBOX_DEFAULT_LOADKMAP
  53. select BUSYBOX_CONFIG_PLATFORM_LINUX
  54. help
  55. This program loads a keyboard translation table from
  56. standard input.
  57. config BUSYBOX_CONFIG_OPENVT
  58. bool "openvt"
  59. default BUSYBOX_DEFAULT_OPENVT
  60. select BUSYBOX_CONFIG_PLATFORM_LINUX
  61. help
  62. This program is used to start a command on an unused
  63. virtual terminal.
  64. config BUSYBOX_CONFIG_RESET
  65. bool "reset"
  66. default BUSYBOX_DEFAULT_RESET
  67. help
  68. This program is used to reset the terminal screen, if it
  69. gets messed up.
  70. config BUSYBOX_CONFIG_RESIZE
  71. bool "resize"
  72. default BUSYBOX_DEFAULT_RESIZE
  73. help
  74. This program is used to (re)set the width and height of your current
  75. terminal.
  76. config BUSYBOX_CONFIG_FEATURE_RESIZE_PRINT
  77. bool "Print environment variables"
  78. default BUSYBOX_DEFAULT_FEATURE_RESIZE_PRINT
  79. depends on BUSYBOX_CONFIG_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_CONFIG_SETCONSOLE
  86. bool "setconsole"
  87. default BUSYBOX_DEFAULT_SETCONSOLE
  88. select BUSYBOX_CONFIG_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_CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS
  93. bool "Enable long options"
  94. default BUSYBOX_DEFAULT_FEATURE_SETCONSOLE_LONG_OPTIONS
  95. depends on BUSYBOX_CONFIG_SETCONSOLE && BUSYBOX_CONFIG_LONG_OPTS
  96. help
  97. Support long options for the setconsole applet.
  98. config BUSYBOX_CONFIG_SETFONT
  99. bool "setfont"
  100. default BUSYBOX_DEFAULT_SETFONT
  101. select BUSYBOX_CONFIG_PLATFORM_LINUX
  102. help
  103. Allows to load console screen map. Useful for i18n.
  104. config BUSYBOX_CONFIG_FEATURE_SETFONT_TEXTUAL_MAP
  105. bool "Support reading textual screen maps"
  106. default BUSYBOX_DEFAULT_FEATURE_SETFONT_TEXTUAL_MAP
  107. depends on BUSYBOX_CONFIG_SETFONT
  108. help
  109. Support reading textual screen maps.
  110. config BUSYBOX_CONFIG_DEFAULT_SETFONT_DIR
  111. string "Default directory for console-tools files"
  112. default BUSYBOX_DEFAULT_DEFAULT_SETFONT_DIR
  113. depends on BUSYBOX_CONFIG_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_CONFIG_SETKEYCODES
  118. bool "setkeycodes"
  119. default BUSYBOX_DEFAULT_SETKEYCODES
  120. select BUSYBOX_CONFIG_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_CONFIG_SETLOGCONS
  125. bool "setlogcons"
  126. default BUSYBOX_DEFAULT_SETLOGCONS
  127. select BUSYBOX_CONFIG_PLATFORM_LINUX
  128. help
  129. This program redirects the output console of kernel messages.
  130. config BUSYBOX_CONFIG_SHOWKEY
  131. bool "showkey"
  132. default BUSYBOX_DEFAULT_SHOWKEY
  133. select BUSYBOX_CONFIG_PLATFORM_LINUX
  134. help
  135. Shows keys pressed.
  136. comment "Common options for loadfont and setfont"
  137. depends on BUSYBOX_CONFIG_LOADFONT || BUSYBOX_CONFIG_SETFONT
  138. config BUSYBOX_CONFIG_FEATURE_LOADFONT_PSF2
  139. bool "Support for PSF2 console fonts"
  140. default BUSYBOX_DEFAULT_FEATURE_LOADFONT_PSF2
  141. depends on BUSYBOX_CONFIG_LOADFONT || BUSYBOX_CONFIG_SETFONT
  142. help
  143. Support PSF2 console fonts.
  144. config BUSYBOX_CONFIG_FEATURE_LOADFONT_RAW
  145. bool "Support for old (raw) console fonts"
  146. default BUSYBOX_DEFAULT_FEATURE_LOADFONT_RAW
  147. depends on BUSYBOX_CONFIG_LOADFONT || BUSYBOX_CONFIG_SETFONT
  148. help
  149. Support old (raw) console fonts.
  150. endmenu