Config.in 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  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 && GETOPT_LONG
  81. help
  82. Support long options for the setconsole applet.
  83. config SETKEYCODES
  84. bool "setkeycodes"
  85. default n
  86. help
  87. This program loads entries into the kernel's scancode-to-keycode
  88. map, allowing unusual keyboards to generate usable keycodes.
  89. config SETLOGCONS
  90. bool "setlogcons"
  91. default n
  92. help
  93. This program redirects the output console of kernel messages.
  94. endmenu