Config.in 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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 CHVT
  8. bool "chvt (2 kb)"
  9. default y
  10. select 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 CLEAR
  15. bool "clear (tiny)"
  16. default y
  17. help
  18. This program clears the terminal screen.
  19. config DEALLOCVT
  20. bool "deallocvt (1.9 kb)"
  21. default y
  22. select PLATFORM_LINUX
  23. help
  24. This program deallocates unused virtual consoles.
  25. config DUMPKMAP
  26. bool "dumpkmap (1.3 kb)"
  27. default y
  28. select PLATFORM_LINUX
  29. help
  30. This program dumps the kernel's keyboard translation table to
  31. stdout, in binary format. You can then use loadkmap to load it.
  32. config FGCONSOLE
  33. bool "fgconsole (1.6 kb)"
  34. default y
  35. select PLATFORM_LINUX
  36. help
  37. This program prints active (foreground) console number.
  38. config KBD_MODE
  39. bool "kbd_mode (4 kb)"
  40. default y
  41. select PLATFORM_LINUX
  42. help
  43. This program reports and sets keyboard mode.
  44. config LOADFONT
  45. bool "loadfont (5.4 kb)"
  46. default y
  47. select PLATFORM_LINUX
  48. help
  49. This program loads a console font from standard input.
  50. config SETFONT
  51. bool "setfont (26 kb)"
  52. default y
  53. select PLATFORM_LINUX
  54. help
  55. Allows to load console screen map. Useful for i18n.
  56. config FEATURE_SETFONT_TEXTUAL_MAP
  57. bool "Support reading textual screen maps"
  58. default y
  59. depends on SETFONT
  60. help
  61. Support reading textual screen maps.
  62. config DEFAULT_SETFONT_DIR
  63. string "Default directory for console-tools files"
  64. default ""
  65. depends on SETFONT
  66. help
  67. Directory to use if setfont's params are simple filenames
  68. (not /path/to/file or ./file). Default is "" (no default directory).
  69. comment "Common options for loadfont and setfont"
  70. depends on LOADFONT || SETFONT
  71. config FEATURE_LOADFONT_PSF2
  72. bool "Support PSF2 console fonts"
  73. default y
  74. depends on LOADFONT || SETFONT
  75. config FEATURE_LOADFONT_RAW
  76. bool "Support old (raw) console fonts"
  77. default y
  78. depends on LOADFONT || SETFONT
  79. config LOADKMAP
  80. bool "loadkmap (1.5 kb)"
  81. default y
  82. select PLATFORM_LINUX
  83. help
  84. This program loads a keyboard translation table from
  85. standard input.
  86. config OPENVT
  87. bool "openvt (7 kb)"
  88. default y
  89. select PLATFORM_LINUX
  90. help
  91. This program is used to start a command on an unused
  92. virtual terminal.
  93. config RESET
  94. bool "reset (275 bytes)"
  95. default y
  96. help
  97. This program is used to reset the terminal screen, if it
  98. gets messed up.
  99. config RESIZE
  100. bool "resize (756 bytes)"
  101. default y
  102. help
  103. This program is used to (re)set the width and height of your current
  104. terminal.
  105. config FEATURE_RESIZE_PRINT
  106. bool "Print environment variables"
  107. default y
  108. depends on RESIZE
  109. help
  110. Prints the newly set size (number of columns and rows) of
  111. the terminal.
  112. E.g.:
  113. COLUMNS=80;LINES=44;export COLUMNS LINES;
  114. config SETCONSOLE
  115. bool "setconsole (3.7 kb)"
  116. default y
  117. select PLATFORM_LINUX
  118. help
  119. Redirect writes to /dev/console to another device,
  120. like the current tty while logged in via telnet.
  121. This does not redirect kernel log, only writes
  122. from user space.
  123. config FEATURE_SETCONSOLE_LONG_OPTIONS
  124. bool "Enable long options"
  125. default y
  126. depends on SETCONSOLE && LONG_OPTS
  127. config SETKEYCODES
  128. bool "setkeycodes (1.7 kb)"
  129. default y
  130. select PLATFORM_LINUX
  131. help
  132. This program loads entries into the kernel's scancode-to-keycode
  133. map, allowing unusual keyboards to generate usable keycodes.
  134. config SETLOGCONS
  135. bool "setlogcons (1.8 kb)"
  136. default y
  137. select PLATFORM_LINUX
  138. help
  139. This program redirects the output console of kernel messages.
  140. config SHOWKEY
  141. bool "showkey (4.7 kb)"
  142. default y
  143. select PLATFORM_LINUX
  144. help
  145. Shows keys pressed.
  146. endmenu