Config.in 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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 BUSYBOX_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 BUSYBOX_FGCONSOLE
  13. bool "fgconsole"
  14. default n
  15. help
  16. This program prints active (foreground) console number.
  17. config BUSYBOX_CLEAR
  18. bool "clear"
  19. default y
  20. help
  21. This program clears the terminal screen.
  22. config BUSYBOX_DEALLOCVT
  23. bool "deallocvt"
  24. default n
  25. help
  26. This program deallocates unused virtual consoles.
  27. config BUSYBOX_DUMPKMAP
  28. bool "dumpkmap"
  29. default n
  30. help
  31. This program dumps the kernel's keyboard translation table to
  32. stdout, in binary format. You can then use loadkmap to load it.
  33. config BUSYBOX_KBD_MODE
  34. bool "kbd_mode"
  35. default y if ADK_TARGET_WITH_INPUT
  36. default n
  37. help
  38. This program reports and sets keyboard mode.
  39. config BUSYBOX_LOADFONT
  40. bool "loadfont"
  41. default n
  42. help
  43. This program loads a console font from standard input.
  44. config BUSYBOX_LOADKMAP
  45. bool "loadkmap"
  46. default y if ADK_TARGET_WITH_INPUT
  47. default n
  48. help
  49. This program loads a keyboard translation table from
  50. standard input.
  51. config BUSYBOX_OPENVT
  52. bool "openvt"
  53. default n
  54. help
  55. This program is used to start a command on an unused
  56. virtual terminal.
  57. config BUSYBOX_RESET
  58. bool "reset"
  59. default y
  60. help
  61. This program is used to reset the terminal screen, if it
  62. gets messed up.
  63. config BUSYBOX_RESIZE
  64. bool "resize"
  65. default n
  66. help
  67. This program is used to (re)set the width and height of your current
  68. terminal.
  69. config BUSYBOX_FEATURE_RESIZE_PRINT
  70. bool "Print environment variables"
  71. default n
  72. depends on BUSYBOX_RESIZE
  73. help
  74. Prints the newly set size (number of columns and rows) of
  75. the terminal.
  76. E.g.:
  77. COLUMNS=80;LINES=44;export COLUMNS LINES;
  78. config BUSYBOX_SETCONSOLE
  79. bool "setconsole"
  80. default n
  81. help
  82. This program redirects the system console to another device,
  83. like the current tty while logged in via telnet.
  84. config BUSYBOX_FEATURE_SETCONSOLE_LONG_OPTIONS
  85. bool "Enable long options"
  86. default n
  87. depends on BUSYBOX_SETCONSOLE && BUSYBOX_LONG_OPTS
  88. help
  89. Support long options for the setconsole applet.
  90. config BUSYBOX_SETFONT
  91. bool "setfont"
  92. default n
  93. help
  94. Allows to load console screen map. Useful for i18n.
  95. config BUSYBOX_FEATURE_SETFONT_TEXTUAL_MAP
  96. bool "Support reading textual screen maps"
  97. default n
  98. depends on BUSYBOX_SETFONT
  99. help
  100. Support reading textual screen maps.
  101. config BUSYBOX_DEFAULT_SETFONT_DIR
  102. string "Default directory for console-tools files"
  103. default ""
  104. depends on BUSYBOX_SETFONT
  105. help
  106. Directory to use if setfont's params are simple filenames
  107. (not /path/to/file or ./file). Default is "" (no default directory).
  108. config BUSYBOX_SETKEYCODES
  109. bool "setkeycodes"
  110. default n
  111. help
  112. This program loads entries into the kernel's scancode-to-keycode
  113. map, allowing unusual keyboards to generate usable keycodes.
  114. config BUSYBOX_SETLOGCONS
  115. bool "setlogcons"
  116. default n
  117. help
  118. This program redirects the output console of kernel messages.
  119. config BUSYBOX_SHOWKEY
  120. bool "showkey"
  121. default n
  122. help
  123. Shows keys pressed.
  124. endmenu