package/kernel: package NAND support
SVN-Revision: 30773
This commit is contained in:
parent
8e0af8361d
commit
e2a5d987bd
1 changed files with 21 additions and 1 deletions
|
@ -818,3 +818,23 @@ define KernelPackage/mtdtests/description
|
|||
endef
|
||||
|
||||
$(eval $(call KernelPackage,mtdtests))
|
||||
|
||||
|
||||
define KernelPackage/nand
|
||||
SUBMENU:=$(OTHER_MENU)
|
||||
TITLE:=NAND flash support
|
||||
KCONFIG:=CONFIG_MTD_NAND \
|
||||
CONFIG_MTD_NAND_IDS \
|
||||
CONFIG_MTD_NAND_ECC
|
||||
FILES:= \
|
||||
$(LINUX_DIR)/drivers/mtd/nand/nand_ids.ko \
|
||||
$(LINUX_DIR)/drivers/mtd/nand/nand_ecc.ko \
|
||||
$(LINUX_DIR)/drivers/mtd/nand/nand.ko
|
||||
AUTOLOAD:=$(call AutoLoad,20,nand_ids nand_ecc nand)
|
||||
endef
|
||||
|
||||
define KernelPackage/nand/description
|
||||
Kernel module for NAND support.
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,nand))
|
||||
|
|
Loading…
Reference in a new issue