diff options
| author | Bin Meng <[email protected]> | 2020-10-14 14:34:52 +0800 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-10-23 13:33:07 -0400 |
| commit | 3bc0db11bace657112f475ed6c93f3afbb012fcd (patch) | |
| tree | ca9faa11afaa8c63886773c7e4d801411cc22d41 /cmd/Kconfig | |
| parent | 3c7bb897183fb0d5617c34030857c264efe503d3 (diff) | |
cmd: Add a 'misc' command to access miscellaneous devices
Enable the command "misc" for accessing miscellaneous devices with
a MISC uclass driver. The command provides listing all MISC devices
as well as read and write functionalities via their drivers.
Signed-off-by: Bin Meng <[email protected]>
Diffstat (limited to 'cmd/Kconfig')
| -rw-r--r-- | cmd/Kconfig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index cc7e93190fe..11f299da2bd 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1025,6 +1025,14 @@ config CMD_LSBLK Print list of available block device drivers, and for each, the list of known block devices. +config CMD_MISC + bool "misc" + depends on MISC + help + Enable the command "misc" for accessing miscellaneous devices with + a MISC uclass driver. The command provides listing all MISC devices + as well as read and write functionalities via their drivers. + config CMD_MMC bool "mmc" help |
