package/kernel: prefix library modules with lib-
[openwrt.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-crc16
56   SUBMENU:=$(LIB_MENU)
57   TITLE:=CRC16 support
58   KCONFIG:=CONFIG_CRC16
59   FILES:=$(LINUX_DIR)/lib/crc16.ko
60   AUTOLOAD:=$(call AutoLoad,20,crc16,1)
61 endef
62
63 define KernelPackage/lib-crc16/description
64  Kernel module for CRC16 support
65 endef
66
67 $(eval $(call KernelPackage,lib-crc16))
68
69
70 define KernelPackage/lib-crc32c
71   SUBMENU:=$(LIB_MENU)
72   TITLE:=CRC32 support
73   KCONFIG:=CONFIG_LIBCRC32C
74   DEPENDS:=+kmod-crypto-crc32c
75   FILES:=$(LINUX_DIR)/lib/libcrc32c.ko
76   AUTOLOAD:=$(call AutoLoad,20,libcrc32c,1)
77 endef
78
79 define KernelPackage/lib-crc32c/description
80  Kernel module for CRC32 support
81 endef
82
83 $(eval $(call KernelPackage,lib-crc32c))
84
85
86 define KernelPackage/lib-lzo
87   SUBMENU:=$(LIB_MENU)
88   TITLE:=LZO support
89   KCONFIG:= \
90         CONFIG_LZO_COMPRESS \
91         CONFIG_LZO_DECOMPRESS
92   FILES:= \
93         $(LINUX_DIR)/lib/lzo/lzo_compress.ko \
94         $(LINUX_DIR)/lib/lzo/lzo_decompress.ko
95   AUTOLOAD:=$(call AutoLoad,20, lzo_compress lzo_decompress,1)
96 endef
97
98 define KernelPackage/lib-lzo/description
99  Kernel module for LZO compression/decompression support
100 endef
101
102 $(eval $(call KernelPackage,lib-lzo))
103
104
105 define KernelPackage/lib-textsearch
106 SUBMENU:=$(LIB_MENU)
107   TITLE:=Textsearch support
108   KCONFIG:= \
109     CONFIG_TEXTSEARCH=y \
110     CONFIG_TEXTSEARCH_KMP \
111     CONFIG_TEXTSEARCH_BM \
112     CONFIG_TEXTSEARCH_FSM
113   FILES:= \
114     $(LINUX_DIR)/lib/ts_kmp.ko \
115     $(LINUX_DIR)/lib/ts_bm.ko \
116     $(LINUX_DIR)/lib/ts_fsm.ko
117   AUTOLOAD:=$(call AutoLoad,20,ts_kmp ts_bm ts_fsm)
118 endef
119
120 $(eval $(call KernelPackage,lib-textsearch))
121
122
123 define KernelPackage/lib-zlib
124   SUBMENU:=$(LIB_MENU)
125   TITLE:=Zlib support
126   KCONFIG:=CONFIG_ZLIB_DEFLATE
127   FILES:=$(LINUX_DIR)/lib/zlib_deflate/zlib_deflate.ko
128   AUTOLOAD:=$(call AutoLoad,08,zlib_deflate,1)
129 endef
130
131 $(eval $(call KernelPackage,lib-zlib))