1config BR2_PACKAGE_DOSFSTOOLS 2 bool "dosfstools" 3 depends on BR2_USE_WCHAR 4 select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE 5 help 6 Tools for creating and checking DOS FAT filesystems. 7 8 https://github.com/dosfstools/dosfstools 9 10if BR2_PACKAGE_DOSFSTOOLS 11 12config BR2_PACKAGE_DOSFSTOOLS_FATLABEL 13 bool "fatlabel" 14 help 15 Get or set the DOS FAT filesystem label. 16 17config BR2_PACKAGE_DOSFSTOOLS_FSCK_FAT 18 bool "fsck.fat" 19 help 20 Check a DOS FAT filesystem. 21 22config BR2_PACKAGE_DOSFSTOOLS_MKFS_FAT 23 bool "mkfs.fat" 24 help 25 Creates a DOS FAT filesystem on a device. 26 27endif 28 29comment "dosfstools needs a toolchain w/ wchar" 30 depends on !BR2_USE_WCHAR 31