diff options
author | Niel Fourie <lusus@denx.de> | 2020-03-30 17:22:58 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-07-07 15:37:13 -0400 |
commit | e369790843d87c2089ae93cd2345723a95ace71d (patch) | |
tree | 5a9c0e680c79b08f0d8c46f34ae3a60f3a2c9259 /cmd/Makefile | |
parent | 2e48836895d1246b40f7e166695651882e7bb68c (diff) | |
download | u-boot-e369790843d87c2089ae93cd2345723a95ace71d.tar.gz |
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/Makefile')
-rw-r--r-- | cmd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Makefile b/cmd/Makefile index 974ad48b0a..006075a048 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -84,6 +84,7 @@ obj-$(CONFIG_CMD_LED) += led.o obj-$(CONFIG_CMD_LICENSE) += license.o obj-y += load.o obj-$(CONFIG_CMD_LOG) += log.o +obj-$(CONFIG_CMD_LSBLK) += lsblk.o obj-$(CONFIG_ID_EEPROM) += mac.o obj-$(CONFIG_CMD_MD5SUM) += md5sum.o obj-$(CONFIG_CMD_MEMORY) += mem.o |