Kconfig 451 B

123456789101112
  1. menuconfig RT_USING_BLK
  2. bool "Using Block device drivers"
  3. default n
  4. help
  5. Enable the generic block-device infrastructure so storage controllers can
  6. register disks/partitions and the RT-Thread DFS layer can mount them.
  7. Almost every filesystem, SDIO, SATA or NAND driver depends on this. Turn
  8. it off only on firmware builds that never interact with block media.
  9. if RT_USING_BLK
  10. rsource "partitions/Kconfig"
  11. endif