diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2018-09-07 19:43:11 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-09-25 21:49:18 -0400 |
commit | 29cfc096a7d3aeefdabbe4487097857ea821a553 (patch) | |
tree | 811a726505318c97190c8d5a1da077a44fd53939 /cmd/Kconfig | |
parent | 03190a7888493058c3a0fd6c50fd0b8dadd165ee (diff) |
cmd: add conitrace command
The 'conitrace' command prints the codes received from the console input as
hexadecimal numbers.
This developer utility is useful for testing the handling of special keys
by keyboard drivers.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 13d4c991bf..cf97a0f2be 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1338,6 +1338,12 @@ config CMD_CACHE help Enable the "icache" and "dcache" commands +config CMD_CONITRACE + bool "conitrace - trace console input codes" + help + Enable the 'conitrace' command which displays the codes received + from the console input as hexadecimal numbers. + config CMD_DISPLAY bool "Enable the 'display' command, for character displays" help |