Config.in.fs 7.0 KB

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