Remove buggy i2c-gpio driver
[openwrt/svn-archive/archive.git] / package / kernel / modules / i2c.mk
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id $
8
9 I2CMENU:=I2C Bus
10
11 define KernelPackage/i2c-core
12 TITLE:=I2C support
13 DESCRIPTION:=Kernel modules for i2c support
14 DEPENDS:=@LINUX_2_6
15 SUBMENU:=$(I2CMENU)
16 KCONFIG:=CONFIG_I2C
17 FILES:=$(LINUX_DIR)/drivers/i2c/*.$(LINUX_KMOD_SUFFIX)
18 AUTOLOAD:=$(call AutoLoad,50,i2c-core i2c-dev)
19 endef
20 $(eval $(call KernelPackage,i2c-core))
21
22 define KernelPackage/i2c-algos
23 TITLE:=I2C algorithms support
24 DESCRIPTION:=Kernel modules for various i2c algorithms
25 DEPENDS:=kmod-i2c-core
26 SUBMENU:=$(I2CMENU)
27 KCONFIG:=CONFIG_I2C_ALGOBIT
28 FILES:=$(LINUX_DIR)/drivers/i2c/algos/*.$(LINUX_KMOD_SUFFIX)
29 AUTOLOAD:=$(call AutoLoad,60,i2c-algo-bit i2c-algo-pcf i2c-algo-pca)
30 endef
31 $(eval $(call KernelPackage,i2c-algos))
32
33 define KernelPackage/i2c-scx200
34 TITLE:=SCX200 i2c support
35 DESCRIPTION:=Kernel module for SCX200 i2c bus
36 DEFAULT:=y if LINUX_2_6_X86_Soekris
37 DEPENDS:=kmod-i2c-core kmod-i2c-algos @LINUX_2_6_X86_Soekris
38 SUBMENU:=$(I2CMENU)
39 KCONFIG:=CONFIG_SCx200_I2C
40 FILES:=$(LINUX_DIR)/drivers/i2c/busses/scx200_i2c.$(LINUX_KMOD_SUFFIX) \
41 $(LINUX_DIR)/drivers/i2c/busses/i2c-isa.$(LINUX_KMOD_SUFFIX)
42 AUTOLOAD:=$(call AutoLoad,70,i2c-isa scx200_i2c)
43 endef
44 $(eval $(call KernelPackage,i2c-scx200))