Config.in.fs 8.7 KB

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