Config.in 3.6 KB

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