Config.in.fs 8.7 KB

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