2012-04-06 18:33:17 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2012-04-06 18:45:52 +02:00
|
|
|
# see misc/tools/kconfig-language.txt.
|
2012-04-06 18:33:17 +02:00
|
|
|
#
|
2012-04-13 04:14:09 +02:00
|
|
|
|
|
|
|
config EXAMPLES_MOUNT
|
|
|
|
bool "File system mount example"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable the file system mount example
|
|
|
|
|
|
|
|
if EXAMPLES_MOUNT
|
2014-01-01 15:52:58 +01:00
|
|
|
|
|
|
|
config EXAMPLES_MOUNT_BLOCKDEVICE
|
|
|
|
bool "Use block device"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Use an existing block device to mount. If EXAMPLES_MOUNT_BLOCKDEVICE
|
|
|
|
is not selected, then a RAM disk will be configured for the test.
|
|
|
|
|
|
|
|
if EXAMPLES_MOUNT_BLOCKDEVICE
|
|
|
|
|
|
|
|
config EXAMPLES_MOUNT_DEVNAME
|
|
|
|
string "Block device name"
|
|
|
|
default "/dev/mtdblock0"
|
|
|
|
---help---
|
|
|
|
The name of the user-provided block device to mount. Must be
|
|
|
|
provided if EXAMPLES_MOUNT_BLOCKDEVICE is selected.
|
|
|
|
|
|
|
|
endif # EXAMPLES_MOUNT_BLOCKDEVICE
|
|
|
|
|
|
|
|
if !EXAMPLES_MOUNT_BLOCKDEVICE
|
|
|
|
|
|
|
|
config EXAMPLES_MOUNT_NSECTORS
|
|
|
|
int "RAM disk number of sectors"
|
|
|
|
default 2048
|
|
|
|
---help---
|
|
|
|
The number of "sectors" in the RAM disk used when
|
|
|
|
EXAMPLES_MOUNT_BLOCKDEVICE is not selected.
|
|
|
|
|
|
|
|
config EXAMPLES_MOUNT_SECTORSIZE
|
|
|
|
int "RAM disk sector size"
|
|
|
|
default 512
|
|
|
|
---help---
|
|
|
|
The size of each sectors in the RAM disk used when
|
|
|
|
EXAMPLES_MOUNT_BLOCKDEVICE is not selected.
|
|
|
|
|
|
|
|
config EXAMPLES_MOUNT_RAMDEVNO
|
|
|
|
int "RAM disk device number"
|
|
|
|
default 0
|
|
|
|
---help---
|
|
|
|
The RAM device minor number used to mount the RAM disk used when
|
|
|
|
EXAMPLES_MOUNT_BLOCKDEVICE is not selected. The default is zero
|
|
|
|
(meaning that "/dev/ram0" will be used).
|
|
|
|
|
|
|
|
endif # !EXAMPLES_MOUNT_BLOCKDEVICE
|
|
|
|
endif # EXAMPLES_MOUNT
|