xref: /OK3568_Linux_fs/kernel/fs/minix/Kconfig (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun# SPDX-License-Identifier: GPL-2.0-only
2*4882a593Smuzhiyunconfig MINIX_FS
3*4882a593Smuzhiyun	tristate "Minix file system support"
4*4882a593Smuzhiyun	depends on BLOCK
5*4882a593Smuzhiyun	help
6*4882a593Smuzhiyun	  Minix is a simple operating system used in many classes about OS's.
7*4882a593Smuzhiyun	  The minix file system (method to organize files on a hard disk
8*4882a593Smuzhiyun	  partition or a floppy disk) was the original file system for Linux,
9*4882a593Smuzhiyun	  but has been superseded by the second extended file system ext2fs.
10*4882a593Smuzhiyun	  You don't want to use the minix file system on your hard disk
11*4882a593Smuzhiyun	  because of certain built-in restrictions, but it is sometimes found
12*4882a593Smuzhiyun	  on older Linux floppy disks.  This option will enlarge your kernel
13*4882a593Smuzhiyun	  by about 28 KB. If unsure, say N.
14*4882a593Smuzhiyun
15*4882a593Smuzhiyun	  To compile this file system support as a module, choose M here: the
16*4882a593Smuzhiyun	  module will be called minix.  Note that the file system of your root
17*4882a593Smuzhiyun	  partition (the one containing the directory /) cannot be compiled as
18*4882a593Smuzhiyun	  a module.
19*4882a593Smuzhiyun
20*4882a593Smuzhiyunconfig MINIX_FS_NATIVE_ENDIAN
21*4882a593Smuzhiyun	def_bool MINIX_FS
22*4882a593Smuzhiyun	depends on MICROBLAZE || MIPS || S390 || SUPERH || SPARC || XTENSA || (M68K && !MMU)
23*4882a593Smuzhiyun
24*4882a593Smuzhiyunconfig MINIX_FS_BIG_ENDIAN_16BIT_INDEXED
25*4882a593Smuzhiyun	def_bool MINIX_FS
26*4882a593Smuzhiyun	depends on M68K && MMU
27