Config.in.fs 8.6 KB

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