Kconfig 1.5 KB
Newer Older
1 2 3
#
# Block layer core configuration
#
4
menuconfig BLOCK
5
       bool "Enable the block layer" if EMBEDDED
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
       default y
       help
	 This permits the block layer to be removed from the kernel if it's not
	 needed (on some embedded devices for example).  If this option is
	 disabled, then blockdev files will become unusable and some
	 filesystems (such as ext3) will become unavailable.

	 This option will also disable SCSI character devices and USB storage
	 since they make use of various block layer definitions and
	 facilities.

	 Say Y here unless you know you really don't want to mount disks and
	 suchlike.

if BLOCK

22 23
config LBD
	bool "Support for Large Block Devices"
24
	depends on !64BIT
25 26 27 28 29
	help
	  Say Y here if you want to attach large (bigger than 2TB) discs to
	  your machine, or if you want to have a raid or loopback device
	  bigger than 2TB.  Otherwise say N.

30 31
config BLK_DEV_IO_TRACE
	bool "Support for tracing block io actions"
32
	depends on SYSFS
33 34 35 36 37 38 39 40 41 42
	select RELAY
	select DEBUG_FS
	help
	  Say Y here, if you want to be able to trace the block layer actions
	  on a given queue. Tracing allows you to see any traffic happening
	  on a block device queue. For more information (and the user space
	  support tools needed), fetch the blktrace app from:

	  git://brick.kernel.dk/data/git/blktrace.git

T
Takashi Sato 已提交
43 44
config LSF
	bool "Support for Large Single Files"
45
	depends on !64BIT
T
Takashi Sato 已提交
46
	help
47 48 49 50
	  Say Y here if you want to be able to handle very large files (bigger
	  than 2TB), otherwise say N.

	  If unsure, say Y.
T
Takashi Sato 已提交
51

52
endif # BLOCK
53

54
source block/Kconfig.iosched