Config.in 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 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 CONFIG_CLEAR
  13. bool "clear"
  14. default n
  15. help
  16. This program clears the terminal screen.
  17. config CONFIG_DEALLOCVT
  18. bool "deallocvt"
  19. default n
  20. help
  21. This program deallocates unused virtual consoles.
  22. config 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 CONFIG_LOADFONT
  29. bool "loadfont"
  30. default n
  31. help
  32. This program loads a console font from standard input.
  33. config CONFIG_LOADKMAP
  34. bool "loadkmap"
  35. default n
  36. help
  37. This program loads a keyboard translation table from
  38. standard input.
  39. config 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 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 CONFIG_SETKEYCODES
  52. bool "setkeycodes"
  53. default n
  54. help
  55. This program loads entries into the kernel's scancode-to-keycode
  56. map, allowing unusual keyboards to generate usable keycodes.
  57. endmenu