diff options
author | Niel Fourie | 2020-03-30 17:22:58 +0200 |
---|---|---|
committer | Tom Rini | 2020-07-07 15:37:13 -0400 |
commit | e369790843d87c2089ae93cd2345723a95ace71d (patch) | |
tree | 5a9c0e680c79b08f0d8c46f34ae3a60f3a2c9259 /cmd/Kconfig | |
parent | 2e48836895d1246b40f7e166695651882e7bb68c (diff) |
cmd: blkls: Add blkls command
Add a command to print a list of available block device drivers,
and for each, the list of known block devices.
Signed-off-by: Niel Fourie <lusus@denx.de>
Cc: Simon Glass <sjg@chromium.org>
Cc: Stefan Roese <sr@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 192b3b262f1..0ead88eff14 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -1088,6 +1088,13 @@ config CMD_LOADS help Load an S-Record file over serial line +config CMD_LSBLK + depends on BLK + bool "lsblk - list block drivers and devices" + help + Print list of available block device drivers, and for each, the list + of known block devices. + config CMD_MMC bool "mmc" help |