1
0

Config.in.fs 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. menu "Filesystems support"
  4. config ADK_KERNEL_MISC_FILESYSTEMS
  5. bool
  6. config ADK_KERNEL_FSNOTIFY
  7. bool
  8. default y
  9. config ADK_KERNEL_EXPORTFS
  10. tristate
  11. config ADK_KERNEL_JBD2
  12. tristate
  13. select ADK_KERNEL_CRC32
  14. select ADK_KERNEL_CRYPTO
  15. select ADK_KERNEL_CRYPTO_CRC32C
  16. config ADK_KERNEL_YAFFS_YAFFS1
  17. bool
  18. config ADK_KERNEL_YAFFS_YAFFS2
  19. bool
  20. config ADK_KERNEL_YAFFS_AUTO_YAFFS2
  21. bool
  22. config ADK_KERNEL_DNOTIFY
  23. bool
  24. config ADK_KERNEL_EXT3_FS_XATTR
  25. bool
  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_XZ
  33. bool
  34. config ADK_KERNEL_JFFS2_COMPRESSION_OPTIONS
  35. bool
  36. config ADK_KERNEL_JFFS2_ZLIB
  37. bool
  38. menu "Filesystems"
  39. config ADK_KERNEL_EXT2_FS
  40. tristate "EXT2 filesystem support"
  41. default y if ADK_TARGET_SYSTEM_LEMOTE_YEELONG
  42. default n
  43. help
  44. Ext2 is a standard Linux file system for hard disks.
  45. config ADK_KERNEL_EXT3_FS
  46. tristate "EXT3 filesystem support"
  47. help
  48. This is the journalling version of the Second extended file system
  49. (often called ext3), the de facto standard Linux file system
  50. (method to organize files on a storage device) for hard disks.
  51. The journalling code included in this driver means you do not have
  52. to run e2fsck (file system checker) on your file systems after a
  53. crash. The journal keeps track of any changes that were being made
  54. at the time the system crashed, and can ensure that your file system
  55. is consistent without the need for a lengthy check.
  56. Other than adding the journal to the file system, the on-disk format
  57. of ext3 is identical to ext2. It is possible to freely switch
  58. between using the ext3 driver and the ext2 driver, as long as the
  59. file system has been cleanly unmounted, or e2fsck is run on the file
  60. system.
  61. To add a journal on an existing ext2 file system or change the
  62. behavior of ext3 file systems, you can use the tune2fs utility ("man
  63. tune2fs"). To modify attributes of files and directories on ext3
  64. file systems, use chattr ("man chattr"). You need to be using
  65. e2fsprogs version 1.20 or later in order to create ext3 journals
  66. (available at <http://sourceforge.net/projects/e2fsprogs/>).
  67. config ADK_KERNEL_EXT4_FS
  68. tristate "EXT4 filesystem support"
  69. select ADK_KERNEL_JBD2
  70. help
  71. Ext4 filesystem.
  72. config ADK_KERNEL_HFSPLUS_FS
  73. tristate "HFS+ filesystem support"
  74. select ADK_KERNEL_NLS_UTF8
  75. select ADK_KERNEL_MISC_FILESYSTEMS
  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. config ADK_KERNEL_NTFS_FS
  84. tristate "NTFS file system support"
  85. help
  86. NTFS is the file system of Microsoft Windows NT, 2000, XP and 2003.
  87. Saying Y or M here enables read support. There is partial, but
  88. safe, write support available. For write support you must also
  89. say Y to "NTFS write support" below.
  90. There are also a number of user-space tools available, called
  91. ntfsprogs. These include ntfsundelete and ntfsresize, that work
  92. without NTFS support enabled in the kernel.
  93. This is a rewrite from scratch of Linux NTFS support and replaced
  94. the old NTFS code starting with Linux 2.5.11. A backport to
  95. the Linux 2.4 kernel series is separately available as a patch
  96. from the project web site.
  97. For more information see <file:Documentation/filesystems/ntfs.txt>
  98. and <http://linux-ntfs.sourceforge.net/>.
  99. If you are not using Windows NT, 2000, XP or 2003 in addition to
  100. Linux on your computer it is safe to say N.
  101. Kernel modules for NTFS support
  102. config ADK_KERNEL_VFAT_FS
  103. tristate "VFAT filesystem support"
  104. select ADK_KERNEL_NLS_CODEPAGE_850
  105. select ADK_KERNEL_NLS_ISO8859_1
  106. default y if ADK_TARGET_BOARD_BCM28XX
  107. default n
  108. help
  109. This option provides support for normal Windows file systems with
  110. long filenames. That includes non-compressed FAT-based file systems
  111. used by Windows 95, Windows 98, Windows NT 4.0, and the Unix
  112. programs from the mtools package.
  113. The VFAT support enlarges your kernel by about 10 KB Please read the
  114. file <file:Documentation/filesystems/vfat.txt> for details.
  115. config ADK_KERNEL_XFS_FS
  116. tristate "XFS filesystem support"
  117. select ADK_KERNEL_EXPORTFS
  118. select ADK_KERNEL_LIBCRC32C
  119. help
  120. XFS is a high performance journaling filesystem which originated
  121. on the SGI IRIX platform. It is completely multi-threaded, can
  122. support large files and large filesystems, extended attributes,
  123. variable block sizes, is extent based, and makes extensive use of
  124. Btrees (directories, extents, free space) to aid both performance
  125. and scalability.
  126. Refer to the documentation at <http://oss.sgi.com/projects/xfs/>
  127. for complete details. This implementation is on-disk compatible
  128. with the IRIX version of XFS.
  129. config ADK_KERNEL_BTRFS_FS
  130. tristate "Btrfs filesystem support"
  131. select ADK_KERNEL_CRYPTO_CRC32C
  132. select ADK_KERNEL_RAID6_PQ
  133. select ADK_KERNEL_XOR_BLOCKS
  134. select ADK_KERNEL_ZLIB_DEFLATE
  135. select ADK_KERNEL_LZO_COMPRESS
  136. select ADK_KERNEL_LZO_DECOMPRESS
  137. help
  138. Btrfs is a general purpose copy-on-write filesystem with extents,
  139. writable snapshotting, support for multiple devices and many more
  140. features focused on fault tolerance, repair and easy administration.
  141. For more information, please see the web pages at
  142. http://btrfs.wiki.kernel.org
  143. config ADK_KERNEL_FUSE_FS
  144. tristate "Filesystem in Userspace support"
  145. help
  146. With FUSE it is possible to implement a fully functional
  147. filesystem in a userspace program.
  148. By enabling this, only the kernel module gets build.
  149. For using it, you will most likely also want to enable
  150. fuse-utils.
  151. config ADK_KERNEL_JOLIET
  152. bool
  153. config ADK_KERNEL_ISO9660_FS
  154. tristate "ISO 9660 / JOLIET CDROM file system support"
  155. select ADK_KERNEL_JOLIET
  156. help
  157. This is the standard file system used on CD-ROMs. It was previously
  158. known as "High Sierra File System" and is called "hsfs" on other
  159. Unix systems. The so-called Rock-Ridge extensions which allow for
  160. long Unix filenames and symbolic links are also supported by this
  161. driver. If you have a CD-ROM drive and want to do more with it than
  162. just listen to audio CDs and watch its LEDs, say Y (and read
  163. <file:Documentation/filesystems/isofs.txt> and the CD-ROM-HOWTO,
  164. available from <http://www.tldp.org/docs.html#howto>), thereby
  165. enlarging your kernel by about 27 KB; otherwise say N.
  166. config ADK_KERNEL_UDF_FS
  167. tristate "UDF file system support"
  168. select ADK_KERNEL_CRC_ITU_T
  169. help
  170. This is the new file system used on some CD-ROMs and DVDs. Say Y if
  171. you intend to mount DVD discs or CDRW's written in packet mode, or
  172. if written to by other UDF utilities, such as DirectCD.
  173. Please read <file:Documentation/filesystems/udf.txt>.
  174. config ADK_KERNEL_JFFS2_FS
  175. tristate "JFFS2 filesystem"
  176. select ADK_KERNEL_MISC_FILESYSTEMS
  177. select ADK_KERNEL_MTD
  178. select ADK_KERNEL_MTD_BLOCK
  179. select ADK_KERNEL_JFFS2_COMPRESSION_OPTIONS
  180. select ADK_KERNEL_JFFS2_ZLIB
  181. depends on ADK_TARGET_WITH_MTD
  182. help
  183. JFFS2 flash filesystem
  184. config ADK_KERNEL_SQUASHFS
  185. tristate "SquashFS filesystem"
  186. select ADK_KERNEL_MISC_FILESYSTEMS
  187. select ADK_KERNEL_SQUASHFS_XZ
  188. help
  189. Squashfs compressed read-only filesystem
  190. config ADK_KERNEL_YAFFS_FS
  191. tristate "YAFFS2 filesystem"
  192. select ADK_KERNEL_MISC_FILESYSTEMS
  193. select ADK_KERNEL_MTD
  194. select ADK_KERNEL_MTD_BLOCK
  195. select ADK_KERNEL_YAFFS_YAFFS1
  196. select ADK_KERNEL_YAFFS_YAFFS2
  197. select ADK_KERNEL_YAFFS_AUTO_YAFFS2
  198. depends on ADK_TARGET_WITH_NAND
  199. help
  200. YAFFS2 filesystem for NAND devices
  201. endmenu
  202. menu "Filesystem features"
  203. config ADK_KERNEL_INOTIFY_USER
  204. bool "Inotify support for userspace"
  205. default y
  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. endmenu
  212. source target/linux/config/Config.in.part
  213. source target/linux/config/Config.in.fsnet
  214. source target/linux/config/Config.in.nls
  215. source target/linux/config/Config.in.aufs
  216. endmenu