diff options
| author | Zhikang Zhang <[email protected]> | 2017-08-03 02:30:59 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2017-08-13 15:17:32 -0400 |
| commit | 0adc38be3d0e55fea72b8bbae831376d1649266e (patch) | |
| tree | 911745a06c54291d0fa39393b6ab3880f0ef5242 /cmd/Kconfig | |
| parent | f6aa61d599678b74b3c4a6bd5604a0f9ac2af9b2 (diff) | |
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 <[email protected]>
Signed-off-by: Wenbin Song <[email protected]>
Signed-off-by: Bin Meng <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
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 183f93260d3..42d955c96ae 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -773,6 +773,13 @@ config CMD_NAND_TORTURE endif # CMD_NAND +config CMD_NVME + bool "nvme" + depends on NVME + default y if NVME + help + NVM Express device support + config CMD_MMC_SPI bool "mmc_spi - Set up MMC SPI device" help |
