Config.in 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see scripts/kbuild/config-language.txt.
  4. #
  5. menu "Console Utilities"
  6. config CHVT
  7. bool "chvt"
  8. default n
  9. help
  10. This program is used to change to another terminal.
  11. Example: chvt 4 (change to terminal /dev/tty4)
  12. config CLEAR
  13. bool "clear"
  14. default n
  15. help
  16. This program clears the terminal screen.
  17. config DEALLOCVT
  18. bool "deallocvt"
  19. default n
  20. help
  21. This program deallocates unused virtual consoles.
  22. config DUMPKMAP
  23. bool "dumpkmap"
  24. default n
  25. help
  26. This program dumps the kernel's keyboard translation table to
  27. stdout, in binary format. You can then use loadkmap to load it.
  28. config KBD_MODE
  29. bool "kbd_mode"
  30. default n
  31. help
  32. This program reports and sets keyboard mode.
  33. config LOADFONT
  34. bool "loadfont"
  35. default n
  36. help
  37. This program loads a console font from standard input.
  38. config LOADKMAP
  39. bool "loadkmap"
  40. default n
  41. help
  42. This program loads a keyboard translation table from
  43. standard input.
  44. config OPENVT
  45. bool "openvt"
  46. default n
  47. help
  48. This program is used to start a command on an unused
  49. virtual terminal.
  50. config RESET
  51. bool "reset"
  52. default n
  53. help
  54. This program is used to reset the terminal screen, if it
  55. gets messed up.
  56. config RESIZE
  57. bool "resize"
  58. default n
  59. help
  60. This program is used to (re)set the width and height of your current
  61. terminal.
  62. config FEATURE_RESIZE_PRINT
  63. bool "Print environment variables"
  64. default n
  65. depends on RESIZE
  66. help
  67. Prints the newly set size (number of columns and rows) of
  68. the terminal.
  69. E.g.:
  70. COLUMNS=80;LINES=44;export COLUMNS LINES;
  71. config SETCONSOLE
  72. bool "setconsole"
  73. default n
  74. help
  75. This program redirects the system console to another device,
  76. like the current tty while logged in via telnet.
  77. config FEATURE_SETCONSOLE_LONG_OPTIONS
  78. bool "Enable long options"
  79. default n
  80. depends on SETCONSOLE && LONG_OPTS
  81. help
  82. Support long options for the setconsole applet.
  83. config SETFONT
  84. bool "setfont"
  85. default n
  86. help
  87. Allows to load console screen map. Useful for i18n.
  88. config FEATURE_SETFONT_TEXTUAL_MAP
  89. bool "Support reading textual screen maps"
  90. default n
  91. depends on SETFONT
  92. help
  93. Support reading textual screen maps.
  94. config DEFAULT_SETFONT_DIR
  95. string "Default directory for console-tools files"
  96. default ""
  97. depends on SETFONT
  98. help
  99. Directory to use if setfont's params are simple filenames
  100. (not /path/to/file or ./file). Default is "" (no default directory).
  101. config SETKEYCODES
  102. bool "setkeycodes"
  103. default n
  104. help
  105. This program loads entries into the kernel's scancode-to-keycode
  106. map, allowing unusual keyboards to generate usable keycodes.
  107. config SETLOGCONS
  108. bool "setlogcons"
  109. default n
  110. help
  111. This program redirects the output console of kernel messages.
  112. config SHOWKEY
  113. bool "showkey"
  114. default n
  115. help
  116. Shows keys pressed.
  117. endmenu