1
0

Config.in.fs 9.3 KB

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