Config.in.fs 8.5 KB

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