Config.in.fs 8.7 KB

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