1# SPDX-License-Identifier: GPL-2.0-only 2 3menu "NAND" 4 5config MTD_NAND_CORE 6 tristate 7 8source "drivers/mtd/nand/onenand/Kconfig" 9source "drivers/mtd/nand/raw/Kconfig" 10source "drivers/mtd/nand/spi/Kconfig" 11 12menu "ECC engine support" 13 14config MTD_NAND_ECC 15 bool 16 depends on MTD_NAND_CORE 17 18config MTD_NAND_BBT_USING_FLASH 19 bool "Mtd Nand BBT using flash management strategy" 20 depends on MTD_NAND_CORE 21 help 22 This is a simple flash BBT management strategy for Nand devices. 23 24 Say Y when you want to use BBT in flash. 25 26endmenu 27 28endmenu 29