| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 | menu "Filesystems support"config ADK_KERNEL_YAFFS_FS	tristate	default nconfig ADK_KERNEL_YAFFS_YAFFS1	boolean	default nconfig ADK_KERNEL_YAFFS_YAFFS2	boolean	default nconfig ADK_KERNEL_YAFFS_AUTO_YAFFS2	boolean	default nconfig ADK_KERNEL_YAFFS_CHECKPOINT_RESERVED_BLOCKS	int	default 0config ADK_KERNEL_YAFFS_SHORT_NAMES_IN_RAM	boolean	default nconfig ADK_KERNEL_MISC_FILESYSTEMS	boolean	default nconfig ADK_KERNEL_EXT3_FS_XATTR	boolean	default nconfig ADK_KERNEL_FAT_DEFAULT_CODEPAGE	int	default 850config ADK_KERNEL_FAT_DEFAULT_IOCHARSET	string	default "iso8859-1"config ADK_KPACKAGE_KMOD_EXPORTFS	tristate	depends on !ADK_KERNEL_EXPORTFS	default n	helpconfig ADK_KERNEL_SQUASHFS	boolean	select ADK_KERNEL_MISC_FILESYSTEMS	default nconfig ADK_KERNEL_EXT2_FS	boolean	default nconfig ADK_KPACKAGE_KMOD_EXT2_FS	prompt "kmod-fs-ext2...................... EXT2 filesystem support"	tristate	default n	depends on !ADK_TARGET_ROOTFS_EXT2_BLOCK	depends on !ADK_KERNEL_EXT2_FS	help	  Ext2 is a standard Linux file system for hard disks.config ADK_KERNEL_EXT3_FS	boolean	default nconfig ADK_KPACKAGE_KMOD_EXT3_FS	prompt "kmod-fs-ext3...................... EXT3 filesystem support"	tristate	depends on !ADK_KERNEL_EXT3_FS	default n	help	  This is the journalling version of the Second extended file system	  (often called ext3), the de facto standard Linux file system	  (method to organize files on a storage device) for hard disks.	  The journalling code included in this driver means you do not have	  to run e2fsck (file system checker) on your file systems after a	  crash.  The journal keeps track of any changes that were being made	  at the time the system crashed, and can ensure that your file system	  is consistent without the need for a lengthy check.	  Other than adding the journal to the file system, the on-disk format	  of ext3 is identical to ext2.  It is possible to freely switch	  between using the ext3 driver and the ext2 driver, as long as the	  file system has been cleanly unmounted, or e2fsck is run on the file	  system.	  To add a journal on an existing ext2 file system or change the	  behavior of ext3 file systems, you can use the tune2fs utility ("man	  tune2fs").  To modify attributes of files and directories on ext3	  file systems, use chattr ("man chattr").  You need to be using	  e2fsprogs version 1.20 or later in order to create ext3 journals	  (available at <http://sourceforge.net/projects/e2fsprogs/>).config ADK_KERNEL_EXT4_FS	boolean	select ADK_KERNEL_CRC16	depends on !ADK_LINUX_CRIS_FOXBOARD	default nconfig ADK_KPACKAGE_KMOD_EXT4_FS	prompt "kmod-fs-ext4...................... EXT4 filesystem support"	tristate	depends on !ADK_KERNEL_EXT4_FS 	depends on !ADK_LINUX_CRIS_FOXBOARD	select ADK_KPACKAGE_KMOD_CRC16	default n	helpconfig ADK_KPACKAGE_KMOD_HFSPLUS_FS	prompt "kmod-fs-hfsplus................... HFS+ filesystem support"	tristate	select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS	select ADK_KPACKAGE_KMOD_NLS_UTF8	select ADK_KERNEL_MISC_FILESYSTEMS	default n	help	  If you say Y here, you will be able to mount extended format	  Macintosh-formatted hard drive partitions with full read-write access.	  This file system is often called HFS+ and was introduced with	  MacOS 8. It includes all Mac specific filesystem data such as	  data forks and creator codes, but it also has several UNIX	  style features such as file ownership and permissions.config ADK_KPACKAGE_KMOD_NTFS_FS	prompt "kmod-fs-ntfs...................... NTFS file system support"	tristate	select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS	default n	help	  NTFS is the file system of Microsoft Windows NT, 2000, XP and 2003.	  Saying Y or M here enables read support.  There is partial, but	  safe, write support available.  For write support you must also	  say Y to "NTFS write support" below.	  There are also a number of user-space tools available, called	  ntfsprogs.  These include ntfsundelete and ntfsresize, that work	  without NTFS support enabled in the kernel.	  This is a rewrite from scratch of Linux NTFS support and replaced	  the old NTFS code starting with Linux 2.5.11.  A backport to	  the Linux 2.4 kernel series is separately available as a patch	  from the project web site.	  For more information see <file:Documentation/filesystems/ntfs.txt>	  and <http://linux-ntfs.sourceforge.net/>.	  If you are not using Windows NT, 2000, XP or 2003 in addition to	  Linux on your computer it is safe to say N.	  Kernel modules for NTFS supportconfig ADK_KERNEL_FAT_FS	tristate	default nconfig ADK_KPACKAGE_KMOD_VFAT_FS	prompt "kmod-fs-vfat...................... VFAT filesystem support"	select ADK_KERNEL_FAT_FS	select ADK_KPACKAGE_KMOD_NLS if !ADK_KERNEL_NLS	select ADK_KPACKAGE_KMOD_NLS_CODEPAGE_850	select ADK_KPACKAGE_KMOD_NLS_ISO8859_1	tristate	default n	help	  This option provides support for normal Windows file systems with	  long filenames.  That includes non-compressed FAT-based file systems	  used by Windows 95, Windows 98, Windows NT 4.0, and the Unix	  programs from the mtools package.	  The VFAT support enlarges your kernel by about 10 KB Please read the	  file <file:Documentation/filesystems/vfat.txt> for details.config ADK_KERNEL_EXPORTFS	boolean	default nconfig ADK_KERNEL_XFS_FS	boolean	select ADK_KERNEL_EXPORTFS	default nconfig ADK_KPACKAGE_KMOD_XFS_FS	prompt "kmod-fs-xfs....................... XFS filesystem support"	tristate	select ADK_KPACKAGE_KMOD_EXPORTFS	depends on !ADK_KERNEL_XFS_FS	default n	help	  XFS is a high performance journaling filesystem which originated	  on the SGI IRIX platform.  It is completely multi-threaded, can	  support large files and large filesystems, extended attributes,	  variable block sizes, is extent based, and makes extensive use of	  Btrees (directories, extents, free space) to aid both performance	  and scalability.	  Refer to the documentation at <http://oss.sgi.com/projects/xfs/>	  for complete details.  This implementation is on-disk compatible	  with the IRIX version of XFS.config ADK_KPACKAGE_KMOD_FUSE_FS	prompt   "kmod-fs-fuse...................... Filesystem in Userspace support"	tristate	default n	help	  With FUSE it is possible to implement a fully functional	  filesystem in a userspace program.	  By enabling this, only the kernel module gets build.	  For using it, you will most likely also want to enable	  fuse-utils.config ADK_KERNEL_JOLIET	bool 	default nconfig ADK_KPACKAGE_KMOD_ISO9660_FS	prompt "kmod-fs-iso9660................... ISO 9660 CDROM file system support"	tristate	select ADK_KERNEL_JOLIET	default n	help	  This is the standard file system used on CD-ROMs.  It was previously	  known as "High Sierra File System" and is called "hsfs" on other	  Unix systems.  The so-called Rock-Ridge extensions which allow for	  long Unix filenames and symbolic links are also supported by this	  driver.  If you have a CD-ROM drive and want to do more with it than	  just listen to audio CDs and watch its LEDs, say Y (and read	  <file:Documentation/filesystems/isofs.txt> and the CD-ROM-HOWTO,	  available from <http://www.tldp.org/docs.html#howto>), thereby	  enlarging your kernel by about 27 KB; otherwise say N.config ADK_KPACKAGE_KMOD_UDF_FS	prompt "kmod-fs-udf....................... UDF file system support"	tristate	select ADK_KPACKAGE_KMOD_CRC_ITU_T	depends on !ADK_LINUX_CRIS_FOXBOARD	default n	help	  This is the new file system used on some CD-ROMs and DVDs. Say Y if	  you intend to mount DVD discs or CDRW's written in packet mode, or	  if written to by other UDF utilities, such as DirectCD.	  Please read <file:Documentation/filesystems/udf.txt>.config ADK_KERNEL_INOTIFY	prompt "inotify........................... Inotify file change notification support"	boolean	default n	help	  Say Y here to enable inotify support.  Inotify is a file change	  notification system and a replacement for dnotify.  Inotify fixes	  numerous shortcomings in dnotify and introduces several new features	  including multiple file events, one-shot support, and unmount	  notification.config ADK_KERNEL_INOTIFY_USER	prompt "inotify-user...................... Inotify support for userspace"	boolean	depends on ADK_KERNEL_INOTIFY	default n	help	  Say Y here to enable inotify support for userspace, including the	  associated system calls.  Inotify allows monitoring of both files and	  directories via a single open fd.  Events are read from the file	  descriptor, which is also select()- and poll()-able.source target/linux/config/Config.in.fsnetsource target/linux/config/Config.in.nlssource target/linux/config/Config.in.aufsendmenu
 |