kernel: add packages for sdhci support
Signed-off-by: John Crispin <blogic@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38549 3c298f89-4303-0410-b956-a3cf2f4a3e73master
parent
5334c56941
commit
7eccc12250
|
@ -265,7 +265,6 @@ define KernelPackage/mmc
|
||||||
CONFIG_MMC_DEBUG=n \
|
CONFIG_MMC_DEBUG=n \
|
||||||
CONFIG_MMC_UNSAFE_RESUME=n \
|
CONFIG_MMC_UNSAFE_RESUME=n \
|
||||||
CONFIG_MMC_BLOCK_BOUNCE=y \
|
CONFIG_MMC_BLOCK_BOUNCE=y \
|
||||||
CONFIG_MMC_SDHCI=n \
|
|
||||||
CONFIG_MMC_TIFM_SD=n \
|
CONFIG_MMC_TIFM_SD=n \
|
||||||
CONFIG_MMC_WBSD=n \
|
CONFIG_MMC_WBSD=n \
|
||||||
CONFIG_SDIO_UART=n
|
CONFIG_SDIO_UART=n
|
||||||
|
@ -282,6 +281,28 @@ endef
|
||||||
$(eval $(call KernelPackage,mmc))
|
$(eval $(call KernelPackage,mmc))
|
||||||
|
|
||||||
|
|
||||||
|
define KernelPackage/sdhci
|
||||||
|
SUBMENU:=$(OTHER_MENU)
|
||||||
|
TITLE:=Secure Digital Host Controller Interface support
|
||||||
|
DEPENDS:=+kmod-mmc
|
||||||
|
KCONFIG:= \
|
||||||
|
CONFIG_MMC_SDHCI \
|
||||||
|
CONFIG_MMC_SDHCI_PLTFM \
|
||||||
|
CONFIG_MMC_SDHCI_PCI=n
|
||||||
|
FILES:= \
|
||||||
|
$(LINUX_DIR)/drivers/mmc/host/sdhci.ko \
|
||||||
|
$(LINUX_DIR)/drivers/mmc/host/sdhci-pltfm.ko
|
||||||
|
|
||||||
|
AUTOLOAD:=$(call AutoProbe,sdhci sdhci-pltfm,1)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define KernelPackage/sdhci/description
|
||||||
|
Kernel support for SDHCI Hosts
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call KernelPackage,sdhci))
|
||||||
|
|
||||||
|
|
||||||
define KernelPackage/oprofile
|
define KernelPackage/oprofile
|
||||||
SUBMENU:=$(OTHER_MENU)
|
SUBMENU:=$(OTHER_MENU)
|
||||||
TITLE:=OProfile profiling support
|
TITLE:=OProfile profiling support
|
||||||
|
|
Loading…
Reference in New Issue