mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 03:58:17 +00:00 
			
		
		
		
	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>
		
			
				
	
	
		
			19 lines
		
	
	
		
			686 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			686 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 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.
 |