package/kernel/sound: Add Gateworks Avila Sound SoC package
[openwrt/svn-archive/archive.git] / package / kernel / modules / lib.mk
1 #
2 # Copyright (C) 2011 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 LIB_MENU:=Libraries
9
10 define KernelPackage/lib-crc-ccitt
11 SUBMENU:=$(LIB_MENU)
12 TITLE:=CRC-CCITT support
13 KCONFIG:=CONFIG_CRC_CCITT
14 FILES:=$(LINUX_DIR)/lib/crc-ccitt.ko
15 AUTOLOAD:=$(call AutoLoad,20,crc-ccitt)
16 endef
17
18 define KernelPackage/lib-crc-ccitt/description
19 Kernel module for CRC-CCITT support
20 endef
21
22 $(eval $(call KernelPackage,lib-crc-ccitt))
23
24
25 define KernelPackage/lib-crc-itu-t
26 SUBMENU:=$(LIB_MENU)
27 TITLE:=CRC ITU-T V.41 support
28 KCONFIG:=CONFIG_CRC_ITU_T
29 FILES:=$(LINUX_DIR)/lib/crc-itu-t.ko
30 AUTOLOAD:=$(call AutoLoad,20,crc-itu-t)
31 endef
32
33 define KernelPackage/lib-crc-itu-t/description
34 Kernel module for CRC ITU-T V.41 support
35 endef
36
37 $(eval $(call KernelPackage,lib-crc-itu-t))
38
39
40 define KernelPackage/lib-crc7
41 SUBMENU:=$(LIB_MENU)
42 TITLE:=CRC7 support
43 KCONFIG:=CONFIG_CRC7
44 FILES:=$(LINUX_DIR)/lib/crc7.ko
45 AUTOLOAD:=$(call AutoLoad,20,crc7)
46 endef
47
48 define KernelPackage/lib-crc7/description
49 Kernel module for CRC7 support
50 endef
51
52 $(eval $(call KernelPackage,lib-crc7))
53
54
55 define KernelPackage/lib-crc8
56 SUBMENU:=$(LIB_MENU)
57 TITLE:=CRC8 support
58 DEPENDS:= @!LINUX_2_6_39
59 KCONFIG:=CONFIG_CRC8
60 FILES:=$(LINUX_DIR)/lib/crc8.ko
61 AUTOLOAD:=$(call AutoLoad,20,crc8)
62 endef
63
64 define KernelPackage/lib-crc8/description
65 Kernel module for CRC8 support
66 endef
67
68 $(eval $(call KernelPackage,lib-crc8))
69
70
71 define KernelPackage/lib-crc16
72 SUBMENU:=$(LIB_MENU)
73 TITLE:=CRC16 support
74 KCONFIG:=CONFIG_CRC16
75 FILES:=$(LINUX_DIR)/lib/crc16.ko
76 AUTOLOAD:=$(call AutoLoad,20,crc16,1)
77 endef
78
79 define KernelPackage/lib-crc16/description
80 Kernel module for CRC16 support
81 endef
82
83 $(eval $(call KernelPackage,lib-crc16))
84
85
86 define KernelPackage/lib-crc32c
87 SUBMENU:=$(LIB_MENU)
88 TITLE:=CRC32 support
89 KCONFIG:=CONFIG_LIBCRC32C
90 DEPENDS:=+kmod-crypto-crc32c
91 FILES:=$(LINUX_DIR)/lib/libcrc32c.ko
92 AUTOLOAD:=$(call AutoLoad,20,libcrc32c,1)
93 endef
94
95 define KernelPackage/lib-crc32c/description
96 Kernel module for CRC32 support
97 endef
98
99 $(eval $(call KernelPackage,lib-crc32c))
100
101
102 define KernelPackage/lib-lzo
103 SUBMENU:=$(LIB_MENU)
104 TITLE:=LZO support
105 KCONFIG:= \
106 CONFIG_LZO_COMPRESS \
107 CONFIG_LZO_DECOMPRESS
108 FILES:= \
109 $(LINUX_DIR)/lib/lzo/lzo_compress.ko \
110 $(LINUX_DIR)/lib/lzo/lzo_decompress.ko
111 AUTOLOAD:=$(call AutoLoad,20, lzo_compress lzo_decompress,1)
112 endef
113
114 define KernelPackage/lib-lzo/description
115 Kernel module for LZO compression/decompression support
116 endef
117
118 $(eval $(call KernelPackage,lib-lzo))
119
120
121 define KernelPackage/lib-textsearch
122 SUBMENU:=$(LIB_MENU)
123 TITLE:=Textsearch support
124 KCONFIG:= \
125 CONFIG_TEXTSEARCH=y \
126 CONFIG_TEXTSEARCH_KMP \
127 CONFIG_TEXTSEARCH_BM \
128 CONFIG_TEXTSEARCH_FSM
129 FILES:= \
130 $(LINUX_DIR)/lib/ts_kmp.ko \
131 $(LINUX_DIR)/lib/ts_bm.ko \
132 $(LINUX_DIR)/lib/ts_fsm.ko
133 AUTOLOAD:=$(call AutoLoad,20,ts_kmp ts_bm ts_fsm)
134 endef
135
136 $(eval $(call KernelPackage,lib-textsearch))
137
138
139 define KernelPackage/lib-zlib
140 SUBMENU:=$(LIB_MENU)
141 TITLE:=Zlib support
142 KCONFIG:= \
143 CONFIG_ZLIB_DEFLATE \
144 CONFIG_ZLIB_INFLATE
145 FILES:= \
146 $(LINUX_DIR)/lib/zlib_deflate/zlib_deflate.ko \
147 $(LINUX_DIR)/lib/zlib_inflate/zlib_inflate.ko
148 AUTOLOAD:=$(call AutoLoad,08,zlib_deflate zlib_inflate,1)
149 endef
150
151 $(eval $(call KernelPackage,lib-zlib))
152
153
154 define KernelPackage/lib-cordic
155 SUBMENU:=$(LIB_MENU)
156 TITLE:=Cordic function support
157 DEPENDS:= @!LINUX_2_6_39
158 KCONFIG:=CONFIG_CORDIC
159 FILES:=$(LINUX_DIR)/lib/cordic.ko
160 AUTOLOAD:=$(call AutoLoad,20,cordic)
161 endef
162
163 define KernelPackage/lib-cordic/description
164 Kernel module for Cordic function support
165 endef
166
167 $(eval $(call KernelPackage,lib-cordic))