8dab169b8b
This simulate various OneNAND flash chips for the MTD onenand layer. It's simple implementation, only basic operations. It don't support the recent changes in NANDSIM such as lazy block allocation, bitflip, and so on. Note: This passed nand-tests. Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: David Woodhouse <dwmw2@infradead.org>
14 lines
270 B
Makefile
14 lines
270 B
Makefile
#
|
|
# Makefile for the OneNAND MTD
|
|
#
|
|
|
|
# Core functionality.
|
|
obj-$(CONFIG_MTD_ONENAND) += onenand.o
|
|
|
|
# Board specific.
|
|
obj-$(CONFIG_MTD_ONENAND_GENERIC) += generic.o
|
|
|
|
# Simulator
|
|
obj-$(CONFIG_MTD_ONENAND_SIM) += onenand_sim.o
|
|
|
|
onenand-objs = onenand_base.o onenand_bbt.o
|