1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

modules: fixes ko files that were renamed in 3.1

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28724 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
blogic
2011-11-03 15:16:50 +00:00
parent e12cd3d5ae
commit fe1f2bb1d9
2 changed files with 15 additions and 0 deletions

View File

@@ -62,8 +62,13 @@ define KernelPackage/spi-gpio
TITLE:=GPIO-based bitbanging SPI Master
DEPENDS:=@GPIO_SUPPORT +kmod-spi-bitbang
KCONFIG:=CONFIG_SPI_GPIO
ifeq ($(strip $(call CompareKernelPatchVer,$(KERNEL_PATCHVER),ge,3.1.0)),1)
FILES:=$(LINUX_DIR)/drivers/spi/spi-gpio.ko
AUTOLOAD:=$(call AutoLoad,92,spi-gpio)
else
FILES:=$(LINUX_DIR)/drivers/spi/spi_gpio.ko
AUTOLOAD:=$(call AutoLoad,92,spi_gpio)
endif
endef
define KernelPackage/spi-gpio/description