Config.in.fs 8.3 KB

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