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