mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
1811a928c6
config_fallbacks.h has some logic that sets HAVE_BLOCK_DEVICE based on a list of enabled options. Moving HAVE_BLOCK_DEVICE to Kconfig allows us to drastically shrink the logic in config_fallbacks.h Signed-off-by: Adam Ford <aford173@gmail.com> [trini: Rename HAVE_BLOCK_DEVICE to CONFIG_BLOCK_DEVICE] Signed-off-by: Tom Rini <trini@konsulko.com>
18 lines
686 B
Text
18 lines
686 B
Text
config SCSI
|
|
bool "Support SCSI controllers"
|
|
select HAVE_BLOCK_DEVICE
|
|
help
|
|
This enables support for SCSI (Small Computer System Interface),
|
|
a parallel interface widely used with storage peripherals such as
|
|
hard drives and optical drives. The SCSI standards define physical
|
|
interfaces as well as protocols for controlling devices and
|
|
tranferring data.
|
|
|
|
config DM_SCSI
|
|
bool "Support SCSI controllers with driver model"
|
|
depends on BLK
|
|
help
|
|
This option enables the SCSI (Small Computer System Interface) uclass
|
|
which supports SCSI and SATA HDDs. For every device configuration
|
|
(IDs/LUNs) a block device is created with RAW read/write and
|
|
filesystem support.
|