2 # Copyright (C) 2008-2010 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
9 W1_MASTERS_DIR
:=$(LINUX_DIR
)/drivers
/w1
/masters
10 W1_SLAVES_DIR
:=$(LINUX_DIR
)/drivers
/w1
/slaves
12 define KernelPackage
/w1
14 TITLE
:=Dallas
's 1-wire support
16 FILES:=$(LINUX_DIR)/drivers/w1/wire.ko
17 AUTOLOAD:=$(call AutoLoad,50,wire)
20 define KernelPackage/w1/description
21 Kernel module for Dallas's
1-wire support
24 $(eval
$(call KernelPackage
,w1
))
36 define KernelPackage
/w1-master-gpio
37 TITLE
:=GPIO
1-wire bus master driver
38 DEPENDS
:=@GPIO_SUPPORT
39 KCONFIG
:=CONFIG_W1_MASTER_GPIO
40 FILES
:=$(W1_MASTERS_DIR
)/w1-gpio.ko
41 AUTOLOAD
:=$(call AutoLoad
,60,w1-gpio
)
45 define KernelPackage
/w1-master-gpio
/description
46 Kernel module for the GPIO
1-wire bus master driver
49 $(eval
$(call KernelPackage
,w1-master-gpio
))
51 define KernelPackage
/w1-master-ds2490
52 TITLE
:=DS2490
1-wire usb bus master driver
53 DEPENDS
:=@USB_SUPPORT
+kmod-usb-core
54 KCONFIG
:=CONFIG_W1_MASTER_DS2490
55 FILES
:=$(W1_MASTERS_DIR
)/ds2490.ko
56 AUTOLOAD
:=$(call AutoLoad
,60,ds2490
)
60 define KernelPackage
/w1-master-ds2490
/description
61 Kernel module for the DS2490 usb
1-wire bus master driver
64 $(eval
$(call KernelPackage
,w1-master-ds2490
))
69 define KernelPackage
/w1-slave-therm
70 TITLE
:=Thermal family implementation
71 KCONFIG
:=CONFIG_W1_SLAVE_THERM
72 FILES
:=$(W1_SLAVES_DIR
)/w1_therm.ko
73 AUTOLOAD
:=$(call AutoLoad
,70,w1_therm
)
77 define KernelPackage
/w1-slave-therm
/description
78 Kernel module for
1-wire thermal sensors
81 $(eval
$(call KernelPackage
,w1-slave-therm
))
84 define KernelPackage
/w1-slave-smem
85 TITLE
:=Simple
64bit memory family implementation
86 KCONFIG
:=CONFIG_W1_SLAVE_SMEM
87 FILES
:=$(W1_SLAVES_DIR
)/w1_smem.ko
88 AUTOLOAD
:=$(call AutoLoad
,70,w1_smem
)
92 define KernelPackage
/w1-slave-smem
/description
93 Kernel module for
1-wire simple
64bit memory rom
(ds2401
/ds2411
/ds1990
*)
96 $(eval
$(call KernelPackage
,w1-slave-smem
))
99 define KernelPackage
/w1-slave-ds2433
100 TITLE
:=Simple
64bit memory family implementation
102 CONFIG_W1_SLAVE_DS2433 \
103 CONFIG_W1_SLAVE_DS2433_CRC
=n
104 FILES
:=$(W1_SLAVES_DIR
)/w1_ds2433.ko
105 AUTOLOAD
:=$(call AutoLoad
,70,w1_ds2433
)
106 $(call AddDepends
/w1
)
109 define KernelPackage
/w1-slave-ds2433
/description
110 Kernel module for
1-wire simple
64bit memory rom
(ds2401
/ds2411
/ds1990
*)
113 $(eval
$(call KernelPackage
,w1-slave-ds2433
))
116 define KernelPackage
/w1-slave-ds2760
117 TITLE
:=Dallas
2760 battery monitor chip
(HP iPAQ
& others
)
119 CONFIG_W1_SLAVE_DS2760 \
120 CONFIG_W1_SLAVE_DS2433_CRC
=n
121 FILES
:=$(W1_SLAVES_DIR
)/w1_ds2760.ko
122 AUTOLOAD
:=$(call AutoLoad
,70,w1_ds2760
)
123 $(call AddDepends
/w1
)
126 define KernelPackage
/w1-slave-ds2760
/description
127 Kernel module for
1-wire DS2760 battery monitor chip support
130 $(eval
$(call KernelPackage
,w1-slave-ds2760
))