diff options
author | Florian Fainelli <florian@openwrt.org> | 2013-01-08 22:20:30 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2013-01-08 22:20:30 +0000 |
commit | 57d6e7314381cdf8204597a3766c1d27051b4a2f (patch) | |
tree | c0c2cfc3f6c01a2ff34a03c030290d16ff58ea7f /package/kernel/modules | |
parent | 7e0c80bcb69e18dc6d9e31aafdb681460118669d (diff) | |
download | upstream-57d6e7314381cdf8204597a3766c1d27051b4a2f.tar.gz upstream-57d6e7314381cdf8204597a3766c1d27051b4a2f.tar.bz2 upstream-57d6e7314381cdf8204597a3766c1d27051b4a2f.zip |
kernel: add kmod-mvsdio MMC host controller for Marvell targets
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 35061
Diffstat (limited to 'package/kernel/modules')
-rw-r--r-- | package/kernel/modules/other.mk | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/package/kernel/modules/other.mk b/package/kernel/modules/other.mk index d4983a3243..08b3a61a0c 100644 --- a/package/kernel/modules/other.mk +++ b/package/kernel/modules/other.mk @@ -768,3 +768,19 @@ define KernelPackage/zram/description endef $(eval $(call KernelPackage,zram)) + + +define KernelPackage/mvsdio + SUBMENU:=$(OTHER_MENU) + TITLE:=Marvell SDIO support + DEPENDS:=@TARGET_orion||TARGET_kirkwood||TARGET_mvebu +kmod-mmc + KCONFIG:=CONFIG_MMC_MVSDIO + FILES:=$(LINUX_DIR)/drivers/mmc/host/mvsdio.ko + AUTOLOAD:=$(call AutoLoad,91,mvsdio) +endef + +define KernelPacakge/mvsdio/description + Kernel support for the Marvell SDIO controller +endef + +$(eval $(call KernelPackage,mvsdio)) |