mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-18 10:54:37 +00:00

The BLK symbol has a few meanings, one of which is that it controls the driver model portion of a "block device". Rather than having this hidden symbol be "default y if ..." it should be select'd by the various block subsystems. Symbols such as PVBLOCK which already select'd BLK are unchanged". Reviewed-by: Peter Robinson <pbrobinson@gmail.com> Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de> Signed-off-by: Tom Rini <trini@konsulko.com>
10 lines
487 B
Text
10 lines
487 B
Text
config SCSI
|
|
bool "Support SCSI controllers with driver model"
|
|
select BLK
|
|
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. For every device configuration (IDs/LUNs) a block
|
|
device is created with RAW read/write and filesystem support.
|