Config.in.fs 9.6 KB

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