1 2# $Id: Config.in,v 1.74 2002/04/23 13:52:14 mag Exp $ 3 4mainmenu_option next_comment 5comment 'Memory Technology Devices (MTD)' 6 7tristate 'Memory Technology Device (MTD) support' CONFIG_MTD 8 9if [ "$CONFIG_MTD" = "y" -o "$CONFIG_MTD" = "m" ]; then 10 bool 'Debugging' CONFIG_MTD_DEBUG 11 if [ "$CONFIG_MTD_DEBUG" = "y" ]; then 12 int ' Debugging verbosity (0 = quiet, 3 = noisy)' CONFIG_MTD_DEBUG_VERBOSE 0 13 fi 14 dep_tristate ' MTD partitioning support' CONFIG_MTD_PARTITIONS $CONFIG_MTD 15 dep_tristate ' MTD concatenating support' CONFIG_MTD_CONCAT $CONFIG_MTD 16 dep_tristate ' RedBoot partition table parsing' CONFIG_MTD_REDBOOT_PARTS $CONFIG_MTD_PARTITIONS 17 dep_tristate ' Command line partition table parsing' CONFIG_MTD_CMDLINE_PARTS $CONFIG_MTD_PARTITIONS 18 if [ "$CONFIG_ARM" = "y" ]; then 19 dep_tristate ' ARM Firmware Suite partition parsing' CONFIG_MTD_AFS_PARTS $CONFIG_MTD_PARTITIONS 20 fi 21 22comment 'User Modules And Translation Layers' 23 dep_tristate ' Direct char device access to MTD devices' CONFIG_MTD_CHAR $CONFIG_MTD 24 dep_tristate ' Caching block device access to MTD devices' CONFIG_MTD_BLOCK $CONFIG_MTD 25 if [ "$CONFIG_MTD_BLOCK" = "n" -o "$CONFIG_MTD_BLOCK" = "m" ]; then 26 dep_tristate ' Readonly block device access to MTD devices' CONFIG_MTD_BLOCK_RO $CONFIG_MTD 27 fi 28 dep_tristate ' FTL (Flash Translation Layer) support' CONFIG_FTL $CONFIG_MTD 29 dep_tristate ' NFTL (NAND Flash Translation Layer) support' CONFIG_NFTL $CONFIG_MTD 30 if [ "$CONFIG_NFTL" = "y" -o "$CONFIG_NFTL" = "m" ]; then 31 bool ' Write support for NFTL (BETA)' CONFIG_NFTL_RW 32 fi 33 34 source drivers/mtd/chips/Config.in 35 36 source drivers/mtd/maps/Config.in 37 38 source drivers/mtd/devices/Config.in 39 40 source drivers/mtd/nand/Config.in 41 42fi 43 44endmenu 45