Config.in.fs 8.3 KB

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