Kconfig 863 B

1234567891011121314151617181920212223
  1. menu "Partition Types"
  2. config RT_BLK_PARTITION_DFS
  3. bool "DFS Partition support"
  4. depends on RT_USING_DFS
  5. default y
  6. help
  7. Parse the RT-Thread DFS partition table (vfs_part) so a single block
  8. device can be split into multiple named logical volumes. Enable this when
  9. you use the DFS tooling or `mkpart` scripts to carve flash storage; it is
  10. harmless to keep on because it only activates when the table signature is
  11. present.
  12. config RT_BLK_PARTITION_EFI
  13. bool "EFI Globally Unique Identifier (GUID) Partition support"
  14. default y
  15. help
  16. Add GUID Partition Table (GPT) support, allowing disks formatted on
  17. modern PCs to be recognized. Required for SATA/NVMe/USB disks that use
  18. GPT; you may disable it on very small targets that only boot from DFS
  19. partitions to save a few kilobytes.
  20. endmenu