diff options
author | Zhikang Zhang <zhikang.zhang@nxp.com> | 2017-08-03 02:30:59 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-08-13 15:17:32 -0400 |
commit | 0adc38be3d0e55fea72b8bbae831376d1649266e (patch) | |
tree | 911745a06c54291d0fa39393b6ab3880f0ef5242 /cmd/Makefile | |
parent | f6aa61d599678b74b3c4a6bd5604a0f9ac2af9b2 (diff) | |
download | u-boot-0adc38be3d0e55fea72b8bbae831376d1649266e.tar.gz |
nvme: Add nvme commands
Add nvme commands in U-Boot command line.
1. "nvme scan" - scan NVMe blk devices
2. "nvme list" - show all available NVMe blk devices
3. "nvme info" - show current or a specific NVMe blk device
4. "nvme device" - show or set current device
5. "nvme part" - print partition table
6. "nvme read" - read data from NVMe blk device
7. "nvme write" - write data to NVMe blk device
Signed-off-by: Zhikang Zhang <zhikang.zhang@nxp.com>
Signed-off-by: Wenbin Song <wenbin.song@nxp.com>
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
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 1bf6e3f711..13c86f8fcc 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -105,6 +105,7 @@ obj-$(CONFIG_CMD_REISER) += reiser.o obj-$(CONFIG_CMD_REMOTEPROC) += remoteproc.o obj-$(CONFIG_SANDBOX) += host.o obj-$(CONFIG_CMD_SATA) += sata.o +obj-$(CONFIG_CMD_NVME) += nvme.o obj-$(CONFIG_CMD_SF) += sf.o obj-$(CONFIG_CMD_SCSI) += scsi.o disk.o obj-$(CONFIG_CMD_SHA1SUM) += sha1sum.o |