Config.in.fs 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. menu "Filesystems support"
  4. config ADK_LINUX_KERNEL_MISC_FILESYSTEMS
  5. bool
  6. config ADK_LINUX_KERNEL_FILE_LOCKING
  7. bool
  8. default y
  9. config ADK_LINUX_KERNEL_FSNOTIFY
  10. bool
  11. default y
  12. config ADK_LINUX_KERNEL_AUTOFS4_FS
  13. bool
  14. config ADK_LINUX_KERNEL_TMPFS_POSIX_ACL
  15. bool
  16. config ADK_LINUX_KERNEL_TMPFS_XATTR
  17. bool
  18. config ADK_LINUX_KERNEL_EXPORTFS
  19. tristate
  20. config ADK_LINUX_KERNEL_JBD2
  21. tristate
  22. select ADK_LINUX_KERNEL_CRC32
  23. select ADK_LINUX_KERNEL_CRYPTO
  24. select ADK_LINUX_KERNEL_CRYPTO_CRC32C
  25. config ADK_LINUX_KERNEL_EXT3_FS_XATTR
  26. bool
  27. config ADK_LINUX_KERNEL_FAT_DEFAULT_CODEPAGE
  28. int
  29. default 850
  30. config ADK_LINUX_KERNEL_FAT_DEFAULT_IOCHARSET
  31. string
  32. default "iso8859-1"
  33. config ADK_LINUX_KERNEL_JFFS2_COMPRESSION_OPTIONS
  34. bool
  35. config ADK_LINUX_KERNEL_JFFS2_ZLIB
  36. bool
  37. menu "Filesystems"
  38. config ADK_LINUX_KERNEL_EXT2_FS
  39. tristate "EXT2 filesystem support"
  40. select ADK_LINUX_KERNEL_BLOCK
  41. default y if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  42. default n
  43. help
  44. Ext2 is a standard Linux file system for hard disks.
  45. config ADK_LINUX_KERNEL_EXT3_FS
  46. tristate "EXT3 filesystem support"
  47. select ADK_LINUX_KERNEL_BLOCK
  48. help
  49. This is the journalling version of the Second extended file system
  50. (often called ext3), the de facto standard Linux file system
  51. (method to organize files on a storage device) for hard disks.
  52. The journalling code included in this driver means you do not have
  53. to run e2fsck (file system checker) on your file systems after a
  54. crash. The journal keeps track of any changes that were being made
  55. at the time the system crashed, and can ensure that your file system
  56. is consistent without the need for a lengthy check.
  57. Other than adding the journal to the file system, the on-disk format
  58. of ext3 is identical to ext2. It is possible to freely switch
  59. between using the ext3 driver and the ext2 driver, as long as the
  60. file system has been cleanly unmounted, or e2fsck is run on the file
  61. system.
  62. To add a journal on an existing ext2 file system or change the
  63. behavior of ext3 file systems, you can use the tune2fs utility ("man
  64. tune2fs"). To modify attributes of files and directories on ext3
  65. file systems, use chattr ("man chattr"). You need to be using
  66. e2fsprogs version 1.20 or later in order to create ext3 journals
  67. (available at <http://sourceforge.net/projects/e2fsprogs/>).
  68. config ADK_LINUX_KERNEL_EXT4_FS
  69. tristate "EXT4 filesystem support"
  70. select ADK_LINUX_KERNEL_BLOCK
  71. select ADK_LINUX_KERNEL_JBD2
  72. help
  73. Ext4 filesystem.
  74. config ADK_LINUX_KERNEL_BTRFS_FS
  75. tristate "Btrfs filesystem support"
  76. select ADK_LINUX_KERNEL_BLOCK
  77. help
  78. Btrfs is a general purpose copy-on-write filesystem with extents,
  79. writable snapshotting, support for multiple devices and many more
  80. features focused on fault tolerance, repair and easy administration.
  81. The filesystem disk format is no longer unstable, and it's not
  82. expected to change unless there are strong reasons to do so. If there
  83. is a format change, file systems with a unchanged format will
  84. continue to be mountable and usable by newer kernels.
  85. For more information, please see the web pages at
  86. http://btrfs.wiki.kernel.org.
  87. To compile this file system support as a module, choose M here. The
  88. module will be called btrfs.
  89. config ADK_LINUX_KERNEL_HFSPLUS_FS
  90. tristate "HFS+ filesystem support"
  91. select ADK_LINUX_KERNEL_BLOCK
  92. select ADK_LINUX_KERNEL_NLS_UTF8
  93. select ADK_LINUX_KERNEL_MISC_FILESYSTEMS
  94. help
  95. If you say Y here, you will be able to mount extended format
  96. Macintosh-formatted hard drive partitions with full read-write access.
  97. This file system is often called HFS+ and was introduced with
  98. MacOS 8. It includes all Mac specific filesystem data such as
  99. data forks and creator codes, but it also has several UNIX
  100. style features such as file ownership and permissions.
  101. config ADK_LINUX_KERNEL_NTFS_FS
  102. tristate "NTFS file system support"
  103. select ADK_LINUX_KERNEL_BLOCK
  104. help
  105. NTFS is the file system of Microsoft Windows NT, 2000, XP and 2003.
  106. Saying Y or M here enables read support. There is partial, but
  107. safe, write support available. For write support you must also
  108. say Y to "NTFS write support" below.
  109. There are also a number of user-space tools available, called
  110. ntfsprogs. These include ntfsundelete and ntfsresize, that work
  111. without NTFS support enabled in the kernel.
  112. This is a rewrite from scratch of Linux NTFS support and replaced
  113. the old NTFS code starting with Linux 2.5.11. A backport to
  114. the Linux 2.4 kernel series is separately available as a patch
  115. from the project web site.
  116. For more information see <file:Documentation/filesystems/ntfs.txt>
  117. and <http://linux-ntfs.sourceforge.net/>.
  118. If you are not using Windows NT, 2000, XP or 2003 in addition to
  119. Linux on your computer it is safe to say N.
  120. Kernel modules for NTFS support
  121. config ADK_LINUX_KERNEL_VFAT_FS
  122. tristate "VFAT filesystem support"
  123. select ADK_LINUX_KERNEL_BLOCK
  124. select ADK_LINUX_KERNEL_NLS_CODEPAGE_850
  125. select ADK_LINUX_KERNEL_NLS_ISO8859_1
  126. default y if ADK_TARGET_BOARD_BCM28XX
  127. default n
  128. help
  129. This option provides support for normal Windows file systems with
  130. long filenames. That includes non-compressed FAT-based file systems
  131. used by Windows 95, Windows 98, Windows NT 4.0, and the Unix
  132. programs from the mtools package.
  133. The VFAT support enlarges your kernel by about 10 KB Please read the
  134. file <file:Documentation/filesystems/vfat.txt> for details.
  135. config ADK_LINUX_KERNEL_XFS_FS
  136. tristate "XFS filesystem support"
  137. select ADK_LINUX_KERNEL_BLOCK
  138. select ADK_LINUX_KERNEL_EXPORTFS
  139. select ADK_LINUX_KERNEL_LIBCRC32C
  140. help
  141. XFS is a high performance journaling filesystem which originated
  142. on the SGI IRIX platform. It is completely multi-threaded, can
  143. support large files and large filesystems, extended attributes,
  144. variable block sizes, is extent based, and makes extensive use of
  145. Btrees (directories, extents, free space) to aid both performance
  146. and scalability.
  147. Refer to the documentation at <http://oss.sgi.com/projects/xfs/>
  148. for complete details. This implementation is on-disk compatible
  149. with the IRIX version of XFS.
  150. config ADK_LINUX_KERNEL_BTRFS_FS
  151. tristate "Btrfs filesystem support"
  152. select ADK_LINUX_KERNEL_BLOCK
  153. select ADK_LINUX_KERNEL_CRYPTO_CRC32C
  154. select ADK_LINUX_KERNEL_RAID6_PQ
  155. select ADK_LINUX_KERNEL_XOR_BLOCKS
  156. select ADK_LINUX_KERNEL_ZLIB_DEFLATE
  157. select ADK_LINUX_KERNEL_LZO_COMPRESS
  158. select ADK_LINUX_KERNEL_LZO_DECOMPRESS
  159. help
  160. Btrfs is a general purpose copy-on-write filesystem with extents,
  161. writable snapshotting, support for multiple devices and many more
  162. features focused on fault tolerance, repair and easy administration.
  163. For more information, please see the web pages at
  164. http://btrfs.wiki.kernel.org
  165. config ADK_LINUX_KERNEL_FUSE_FS
  166. tristate "Filesystem in Userspace support"
  167. help
  168. With FUSE it is possible to implement a fully functional
  169. filesystem in a userspace program.
  170. By enabling this, only the kernel module gets build.
  171. For using it, you will most likely also want to enable
  172. fuse-utils.
  173. config ADK_LINUX_KERNEL_JOLIET
  174. bool
  175. config ADK_LINUX_KERNEL_ISO9660_FS
  176. tristate "ISO 9660 / JOLIET CDROM file system support"
  177. select ADK_LINUX_KERNEL_JOLIET
  178. help
  179. This is the standard file system used on CD-ROMs. It was previously
  180. known as "High Sierra File System" and is called "hsfs" on other
  181. Unix systems. The so-called Rock-Ridge extensions which allow for
  182. long Unix filenames and symbolic links are also supported by this
  183. driver. If you have a CD-ROM drive and want to do more with it than
  184. just listen to audio CDs and watch its LEDs, say Y (and read
  185. <file:Documentation/filesystems/isofs.txt> and the CD-ROM-HOWTO,
  186. available from <http://www.tldp.org/docs.html#howto>), thereby
  187. enlarging your kernel by about 27 KB; otherwise say N.
  188. config ADK_LINUX_KERNEL_UDF_FS
  189. tristate "UDF file system support"
  190. select ADK_LINUX_KERNEL_CRC_ITU_T
  191. help
  192. This is the new file system used on some CD-ROMs and DVDs. Say Y if
  193. you intend to mount DVD discs or CDRW's written in packet mode, or
  194. if written to by other UDF utilities, such as DirectCD.
  195. Please read <file:Documentation/filesystems/udf.txt>.
  196. config ADK_LINUX_KERNEL_JFFS2_FS
  197. tristate "JFFS2 filesystem"
  198. select ADK_LINUX_KERNEL_MISC_FILESYSTEMS
  199. select ADK_LINUX_KERNEL_MTD
  200. select ADK_LINUX_KERNEL_MTD_BLOCK
  201. select ADK_LINUX_KERNEL_JFFS2_COMPRESSION_OPTIONS
  202. select ADK_LINUX_KERNEL_JFFS2_ZLIB
  203. help
  204. JFFS2 flash filesystem
  205. config ADK_LINUX_KERNEL_SQUASHFS
  206. tristate "SquashFS filesystem"
  207. select ADK_LINUX_KERNEL_MISC_FILESYSTEMS
  208. help
  209. Squashfs compressed read-only filesystem
  210. config ADK_LINUX_KERNEL_MTD_UBI_GLUEBI
  211. bool
  212. config ADK_LINUX_KERNEL_MTD_UBI
  213. tristate
  214. select ADK_LINUX_KERNEL_MTD
  215. select ADK_LINUX_KERNEL_MTD_UBI_GLUEBI
  216. config ADK_LINUX_KERNEL_UBIFS_FS
  217. tristate "UBIFS Filesystem"
  218. select ADK_LINUX_KERNEL_MTD_UBI
  219. help
  220. UBIFS is a file system for flash devices which works on top of UBI.
  221. config ADK_LINUX_KERNEL_OVERLAY_FS
  222. bool "Overlay filesystem support"
  223. help
  224. This enables the overlay filesystem which is present
  225. in upstream kernels starting with version 3.18.
  226. endmenu
  227. source target/linux/config/Config.in.fsopts
  228. source target/linux/config/Config.in.part
  229. source target/linux/config/Config.in.fsnet
  230. source target/linux/config/Config.in.nls
  231. endmenu