Config.in.fs 8.3 KB

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