mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-27 14:01:05 +02:00
fixes ipkg dependency bug for spi modules, #3272
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12001 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
46251ff6dd
commit
7f399f7b29
@ -565,8 +565,10 @@ $(eval $(call KernelPackage,input-gpio-buttons))
|
|||||||
define KernelPackage/mmc-spi
|
define KernelPackage/mmc-spi
|
||||||
SUBMENU:=$(OTHER_MENU)
|
SUBMENU:=$(OTHER_MENU)
|
||||||
TITLE:=MMC/SD over SPI Support
|
TITLE:=MMC/SD over SPI Support
|
||||||
DEPENDS:=@LINUX_2_6 +kmod-mmc +kmod-spi +kmod-crc-itu-t +kmod-crc7
|
DEPENDS:=@LINUX_2_6 +kmod-mmc +kmod-crc-itu-t +kmod-crc7
|
||||||
KCONFIG:=CONFIG_MMC_SPI
|
KCONFIG:=CONFIG_MMC_SPI \
|
||||||
|
CONFIG_SPI=y \
|
||||||
|
CONFIG_SPI_MASTER=y
|
||||||
FILES:=$(LINUX_DIR)/drivers/mmc/host/mmc_spi.$(LINUX_KMOD_SUFFIX)
|
FILES:=$(LINUX_DIR)/drivers/mmc/host/mmc_spi.$(LINUX_KMOD_SUFFIX)
|
||||||
AUTOLOAD:=$(call AutoLoad,90,mmc_spi)
|
AUTOLOAD:=$(call AutoLoad,90,mmc_spi)
|
||||||
endef
|
endef
|
||||||
@ -592,26 +594,13 @@ endef
|
|||||||
|
|
||||||
$(eval $(call KernelPackage,mmc-atmelmci))
|
$(eval $(call KernelPackage,mmc-atmelmci))
|
||||||
|
|
||||||
define KernelPackage/spi
|
|
||||||
SUBMENU:=$(OTHER_MENU)
|
|
||||||
TITLE:=Serial Peripheral Interface support
|
|
||||||
DEPENDS:=@LINUX_2_6
|
|
||||||
KCONFIG:=\
|
|
||||||
CONFIG_SPI=y \
|
|
||||||
CONFIG_SPI_MASTER=y
|
|
||||||
endef
|
|
||||||
|
|
||||||
define KernelPackage/spi/description
|
|
||||||
This package contains the Serial Peripheral Interface Master driver
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call KernelPackage,spi))
|
|
||||||
|
|
||||||
define KernelPackage/spi-bitbang
|
define KernelPackage/spi-bitbang
|
||||||
SUBMENU:=$(OTHER_MENU)
|
SUBMENU:=$(OTHER_MENU)
|
||||||
TITLE:=Serial Peripheral Interface bitbanging library
|
TITLE:=Serial Peripheral Interface bitbanging library
|
||||||
DEPENDS:=@LINUX_2_6 +kmod-spi
|
DEPENDS:=@LINUX_2_6
|
||||||
KCONFIG:=CONFIG_SPI_BITBANG
|
KCONFIG:=CONFIG_SPI_BITBANG \
|
||||||
|
CONFIG_SPI=y \
|
||||||
|
CONFIG_SPI_MASTER=y
|
||||||
FILES:=$(LINUX_DIR)/drivers/spi/spi_bitbang.$(LINUX_KMOD_SUFFIX)
|
FILES:=$(LINUX_DIR)/drivers/spi/spi_bitbang.$(LINUX_KMOD_SUFFIX)
|
||||||
AUTOLOAD:=$(call AutoLoad,91,spi_bitbang)
|
AUTOLOAD:=$(call AutoLoad,91,spi_bitbang)
|
||||||
endef
|
endef
|
||||||
@ -640,8 +629,10 @@ $(eval $(call KernelPackage,spi-gpio))
|
|||||||
define KernelPackage/spi-dev
|
define KernelPackage/spi-dev
|
||||||
SUBMENU:=$(OTHER_MENU)
|
SUBMENU:=$(OTHER_MENU)
|
||||||
TITLE:=User mode SPI device driver
|
TITLE:=User mode SPI device driver
|
||||||
DEPENDS:=@LINUX_2_6 +kmod-spi
|
DEPENDS:=@LINUX_2_6
|
||||||
KCONFIG:=CONFIG_SPI_SPIDEV
|
KCONFIG:=CONFIG_SPI_SPIDEV \
|
||||||
|
CONFIG_SPI=y \
|
||||||
|
CONFIG_SPI_MASTER=y
|
||||||
FILES:=$(LINUX_DIR)/drivers/spi/spidev.$(LINUX_KMOD_SUFFIX)
|
FILES:=$(LINUX_DIR)/drivers/spi/spidev.$(LINUX_KMOD_SUFFIX)
|
||||||
AUTOLOAD:=$(call AutoLoad,91,spidev)
|
AUTOLOAD:=$(call AutoLoad,91,spidev)
|
||||||
endef
|
endef
|
||||||
|
@ -16,9 +16,10 @@ include $(INCLUDE_DIR)/package.mk
|
|||||||
define KernelPackage/spi-ks8995
|
define KernelPackage/spi-ks8995
|
||||||
SUBMENU:=Other modules
|
SUBMENU:=Other modules
|
||||||
TITLE:=Micrel/Kendin KS8995 Ethernet switch control
|
TITLE:=Micrel/Kendin KS8995 Ethernet switch control
|
||||||
DEPENDS:=@LINUX_2_6 +kmod-spi
|
DEPENDS:=@LINUX_2_6
|
||||||
FILES:=$(PKG_BUILD_DIR)/spi_ks8995.$(LINUX_KMOD_SUFFIX)
|
FILES:=$(PKG_BUILD_DIR)/spi_ks8995.$(LINUX_KMOD_SUFFIX)
|
||||||
KCONFIG:=
|
KCONFIG:=CONFIG_SPI=y \
|
||||||
|
CONFIG_SPI_MASTER=y
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define KernelPackage/spi-ks8995/description
|
define KernelPackage/spi-ks8995/description
|
||||||
|
Loading…
x
Reference in New Issue
Block a user