diff options
author | Heinrich Schuchardt | 2018-02-14 08:05:44 +0100 |
---|---|---|
committer | Tom Rini | 2018-02-14 12:14:16 -0500 |
commit | 0c3fecd0bf8e36af8e53f3213f141d98c2907455 (patch) | |
tree | 4f56cf46f7e9f85e3a05411713aeadaab90d7257 /cmd | |
parent | 678382c73a08145262e95b5639607f72e49c0ee9 (diff) |
cmd: scsi: move CMD_SCSI to device access commands
Configuration option CMD_SCSI should be placed in the same submenu as
CMD_SATA and CMD_MMC.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/Kconfig | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 7c517493983..885712f00f3 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -877,6 +877,15 @@ config CMD_SAVES Provides a way to save a binary file using the Motorola S-Record format over the serial line. +config CMD_SCSI + bool "scsi - Access to SCSI devices" + default y if SCSI + help + This provides a 'scsi' command which provides access to SCSI (Small + Computer System Interface) devices. The command provides a way to + scan the bus, reset the bus, read and write data and get information + about devices. + config CMD_SDRAM bool "sdram - Print SDRAM configuration information" help @@ -1466,15 +1475,6 @@ config CMD_REISER reiserls - list files reiserload - load a file -config CMD_SCSI - bool "scsi - Access to SCSI devices" - default y if SCSI - help - This provides a 'scsi' command which provides access to SCSI (Small - Computer System Interface) devices. The command provides a way to - scan the bus, reset the bus, read and write data and get information - about devices. - config CMD_YAFFS2 bool "yaffs2 - Access of YAFFS2 filesystem" depends on YAFFS2 |