Creation of Cybook 2416 (actually Gen4) repository

This commit is contained in:
mlt
2009-12-18 17:10:00 +00:00
committed by godzil
commit 76f20f4d40
13791 changed files with 6812321 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#
# Makefile for the OneNAND MTD
#
# Core functionality.
obj-$(CONFIG_MTD_ONENAND) += onenand.o onenand_bbt.o
# Board specific.
obj-$(CONFIG_MTD_ONENAND_GENERIC) += generic.o
ifeq ($(CONFIG_CPU_S3C6400),y)
onenand-objs = s3c_onenand.o
else ifeq ($(CONFIG_CPU_S3C6410),y)
onenand-objs = s3c_onenand.o
else
onenand-objs = onenand_base.o
endif