Kconfig 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. config BLK
  2. bool "Support block devices"
  3. depends on DM
  4. default y if DM_MMC
  5. help
  6. Enable support for block devices, such as SCSI, MMC and USB
  7. flash sticks. These provide a block-level interface which permits
  8. reading, writing and (in some cases) erasing blocks. Block
  9. devices often have a partition table which allows the device to
  10. be partitioned into several areas, called 'partitions' in U-Boot.
  11. A filesystem can be placed in each partition.
  12. config HAVE_BLOCK_DEVICE
  13. bool "Enable Legacy Block Device"
  14. help
  15. Some devices require block support whether or not DM is enabled
  16. config SPL_BLK
  17. bool "Support block devices in SPL"
  18. depends on SPL_DM && BLK
  19. default y
  20. help
  21. Enable support for block devices, such as SCSI, MMC and USB
  22. flash sticks. These provide a block-level interface which permits
  23. reading, writing and (in some cases) erasing blocks. Block
  24. devices often have a partition table which allows the device to
  25. be partitioned into several areas, called 'partitions' in U-Boot.
  26. A filesystem can be placed in each partition.
  27. config BLOCK_CACHE
  28. bool "Use block device cache"
  29. depends on BLK
  30. default y
  31. help
  32. This option enables a disk-block cache for all block devices.
  33. This is most useful when accessing filesystems under U-Boot since
  34. it will prevent repeated reads from directory structures and other
  35. filesystem data structures.
  36. config SPL_BLOCK_CACHE
  37. bool "Use block device cache in SPL"
  38. depends on SPL_BLK
  39. default n
  40. help
  41. This option enables the disk-block cache in SPL
  42. config IDE
  43. bool "Support IDE controllers"
  44. select HAVE_BLOCK_DEVICE
  45. help
  46. Enables support for IDE (Integrated Drive Electronics) hard drives.
  47. This allows access to raw blocks and filesystems on an IDE drive
  48. from U-Boot. See also CMD_IDE which provides an 'ide' command for
  49. performing various IDE operations.