Config.in 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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 LOADFONT
  29. bool "loadfont"
  30. default n
  31. help
  32. This program loads a console font from standard input.
  33. config LOADKMAP
  34. bool "loadkmap"
  35. default n
  36. help
  37. This program loads a keyboard translation table from
  38. standard input.
  39. config OPENVT
  40. bool "openvt"
  41. default n
  42. help
  43. This program is used to start a command on an unused
  44. virtual terminal.
  45. config RESET
  46. bool "reset"
  47. default n
  48. help
  49. This program is used to reset the terminal screen, if it
  50. gets messed up.
  51. config RESIZE
  52. bool "resize"
  53. default n
  54. help
  55. This program is used to (re)set the width and height of your current
  56. terminal.
  57. config FEATURE_RESIZE_PRINT
  58. bool "print environment variables"
  59. default n
  60. depends on RESIZE
  61. help
  62. Prints the newly set size (number of columns and rows) of
  63. the terminal.
  64. E.g.:
  65. COLUMNS=80;LINES=44;export COLUMNS LINES;
  66. config SETCONSOLE
  67. bool "setconsole"
  68. default n
  69. help
  70. This program redirects the system console to another device,
  71. like the current tty while logged in via telnet.
  72. config FEATURE_SETCONSOLE_LONG_OPTIONS
  73. bool "Enable long options"
  74. default n
  75. depends on SET_CONSOLE && GETOPT_LONG
  76. help
  77. Support long options for the setconsole applet.
  78. config SETKEYCODES
  79. bool "setkeycodes"
  80. default n
  81. help
  82. This program loads entries into the kernel's scancode-to-keycode
  83. map, allowing unusual keyboards to generate usable keycodes.
  84. config SETLOGCONS
  85. bool "setlogcons"
  86. default n
  87. help
  88. This program redirects the output console of kernel messages.
  89. endmenu