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 | 6fbb9313b66a98fed2cda8f2ef5cfe5ac25a321e (patch) | |
tree | 1adf4b6898ba801bf97687fcec63d4cdbae0a771 /package | |
parent | ae783bbce750d876cdbd7e54a2f9c461a87b8725 (diff) | |
download | upstream-6fbb9313b66a98fed2cda8f2ef5cfe5ac25a321e.tar.gz upstream-6fbb9313b66a98fed2cda8f2ef5cfe5ac25a321e.tar.bz2 upstream-6fbb9313b66a98fed2cda8f2ef5cfe5ac25a321e.zip |
kernel: add kmod-mvsdio MMC host controller for Marvell targets
Signed-off-by: Florian Fainelli <florian@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@35061 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package')
-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)) |