lib.mk 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  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. LIB_MENU:=Libraries
  8. define KernelPackage/lib-crc-ccitt
  9. SUBMENU:=$(LIB_MENU)
  10. TITLE:=CRC-CCITT support
  11. KCONFIG:=CONFIG_CRC_CCITT
  12. FILES:=$(LINUX_DIR)/lib/crc-ccitt.ko
  13. AUTOLOAD:=$(call AutoProbe,crc-ccitt)
  14. endef
  15. define KernelPackage/lib-crc-ccitt/description
  16. Kernel module for CRC-CCITT support
  17. endef
  18. $(eval $(call KernelPackage,lib-crc-ccitt))
  19. define KernelPackage/lib-crc-itu-t
  20. SUBMENU:=$(LIB_MENU)
  21. TITLE:=CRC ITU-T V.41 support
  22. KCONFIG:=CONFIG_CRC_ITU_T
  23. FILES:=$(LINUX_DIR)/lib/crc-itu-t.ko
  24. AUTOLOAD:=$(call AutoProbe,crc-itu-t)
  25. endef
  26. define KernelPackage/lib-crc-itu-t/description
  27. Kernel module for CRC ITU-T V.41 support
  28. endef
  29. $(eval $(call KernelPackage,lib-crc-itu-t))
  30. define KernelPackage/lib-crc7
  31. SUBMENU:=$(LIB_MENU)
  32. TITLE:=CRC7 support
  33. KCONFIG:=CONFIG_CRC7
  34. FILES:=$(LINUX_DIR)/lib/crc7.ko
  35. AUTOLOAD:=$(call AutoProbe,crc7)
  36. endef
  37. define KernelPackage/lib-crc7/description
  38. Kernel module for CRC7 support
  39. endef
  40. $(eval $(call KernelPackage,lib-crc7))
  41. define KernelPackage/lib-crc8
  42. SUBMENU:=$(LIB_MENU)
  43. TITLE:=CRC8 support
  44. KCONFIG:=CONFIG_CRC8
  45. FILES:=$(LINUX_DIR)/lib/crc8.ko
  46. AUTOLOAD:=$(call AutoProbe,crc8)
  47. endef
  48. define KernelPackage/lib-crc8/description
  49. Kernel module for CRC8 support
  50. endef
  51. $(eval $(call KernelPackage,lib-crc8))
  52. define KernelPackage/lib-crc16
  53. SUBMENU:=$(LIB_MENU)
  54. TITLE:=CRC16 support
  55. KCONFIG:=CONFIG_CRC16
  56. FILES:=$(LINUX_DIR)/lib/crc16.ko
  57. AUTOLOAD:=$(call AutoLoad,20,crc16,1)
  58. endef
  59. define KernelPackage/lib-crc16/description
  60. Kernel module for CRC16 support
  61. endef
  62. $(eval $(call KernelPackage,lib-crc16))
  63. define KernelPackage/lib-crc32c
  64. SUBMENU:=$(LIB_MENU)
  65. TITLE:=CRC32 support
  66. KCONFIG:=CONFIG_LIBCRC32C
  67. DEPENDS:=+kmod-crypto-crc32c
  68. FILES:=$(LINUX_DIR)/lib/libcrc32c.ko
  69. AUTOLOAD:=$(call AutoProbe,libcrc32c)
  70. endef
  71. define KernelPackage/lib-crc32c/description
  72. Kernel module for CRC32 support
  73. endef
  74. $(eval $(call KernelPackage,lib-crc32c))
  75. define KernelPackage/lib-lzo
  76. SUBMENU:=$(LIB_MENU)
  77. TITLE:=LZO support
  78. DEPENDS:=+!(LINUX_3_18||LINUX_4_9):kmod-crypto-acompress
  79. KCONFIG:= \
  80. CONFIG_CRYPTO_LZO@ge4.9 \
  81. CONFIG_LZO_COMPRESS \
  82. CONFIG_LZO_DECOMPRESS
  83. HIDDEN:=1
  84. FILES:= \
  85. $(LINUX_DIR)/crypto/lzo.ko@ge4.9 \
  86. $(LINUX_DIR)/lib/lzo/lzo_compress.ko \
  87. $(LINUX_DIR)/lib/lzo/lzo_decompress.ko
  88. AUTOLOAD:=$(call AutoProbe,lzo@ge4.9 lzo_compress lzo_decompress)
  89. endef
  90. define KernelPackage/lib-lzo/description
  91. Kernel module for LZO compression/decompression support
  92. endef
  93. $(eval $(call KernelPackage,lib-lzo))
  94. define KernelPackage/lib-zstd
  95. SUBMENU:=$(LIB_MENU)
  96. TITLE:=ZSTD support
  97. KCONFIG:= \
  98. CONFIG_ZSTD_COMPRESS \
  99. CONFIG_ZSTD_DECOMPRESS \
  100. CONFIG_XXHASH
  101. HIDDEN:=1
  102. FILES:= \
  103. $(LINUX_DIR)/lib/xxhash.ko \
  104. $(LINUX_DIR)/lib/zstd/zstd_compress.ko \
  105. $(LINUX_DIR)/lib/zstd/zstd_decompress.ko
  106. AUTOLOAD:=$(call AutoProbe,xxhash zstd_compress zstd_decompress)
  107. endef
  108. define KernelPackage/lib-zstd/description
  109. Kernel module for ZSTD compression/decompression support
  110. endef
  111. $(eval $(call KernelPackage,lib-zstd))
  112. define KernelPackage/lib-lz4
  113. SUBMENU:=$(LIB_MENU)
  114. TITLE:=LZ4 support
  115. DEPENDS:=+!(LINUX_3_18||LINUX_4_9):kmod-crypto-acompress
  116. HIDDEN:=1
  117. KCONFIG:= \
  118. CONFIG_CRYPTO_LZ4@ge4.9 \
  119. CONFIG_LZ4_COMPRESS \
  120. CONFIG_LZ4_DECOMPRESS
  121. FILES:= \
  122. $(LINUX_DIR)/crypto/lz4.ko@ge4.9 \
  123. $(LINUX_DIR)/lib/lz4/lz4_compress.ko \
  124. $(LINUX_DIR)/lib/lz4/lz4_decompress.ko
  125. AUTOLOAD:=$(call AutoProbe,lz4@ge4.9 lz4_compress lz4_decompress)
  126. endef
  127. define KernelPackage/lib-lz4/description
  128. Kernel module for LZ4 compression/decompression support
  129. endef
  130. $(eval $(call KernelPackage,lib-lz4))
  131. define KernelPackage/lib-raid6
  132. SUBMENU:=$(LIB_MENU)
  133. TITLE:=RAID6 algorithm support
  134. HIDDEN:=1
  135. KCONFIG:=CONFIG_RAID6_PQ
  136. FILES:=$(LINUX_DIR)/lib/raid6/raid6_pq.ko
  137. AUTOLOAD:=$(call AutoProbe,raid6_pq)
  138. endef
  139. define KernelPackage/lib-raid6/description
  140. Kernel module for RAID6 algorithms
  141. endef
  142. $(eval $(call KernelPackage,lib-raid6))
  143. define KernelPackage/lib-xor
  144. SUBMENU:=$(LIB_MENU)
  145. TITLE:=XOR blocks algorithm support
  146. HIDDEN:=1
  147. KCONFIG:=CONFIG_XOR_BLOCKS
  148. ifneq ($(wildcard $(LINUX_DIR)/arch/arm/lib/xor-neon.ko),)
  149. FILES:= \
  150. $(LINUX_DIR)/crypto/xor.ko \
  151. $(LINUX_DIR)/arch/arm/lib/xor-neon.ko
  152. AUTOLOAD:=$(call AutoProbe,xor-neon xor)
  153. else
  154. FILES:=$(LINUX_DIR)/crypto/xor.ko
  155. AUTOLOAD:=$(call AutoProbe,xor)
  156. endif
  157. endef
  158. define KernelPackage/lib-xor/description
  159. Kernel module for XOR blocks algorithms
  160. endef
  161. $(eval $(call KernelPackage,lib-xor))
  162. define KernelPackage/lib-textsearch
  163. SUBMENU:=$(LIB_MENU)
  164. TITLE:=Textsearch support
  165. KCONFIG:= \
  166. CONFIG_TEXTSEARCH=y \
  167. CONFIG_TEXTSEARCH_KMP \
  168. CONFIG_TEXTSEARCH_BM \
  169. CONFIG_TEXTSEARCH_FSM
  170. FILES:= \
  171. $(LINUX_DIR)/lib/ts_kmp.ko \
  172. $(LINUX_DIR)/lib/ts_bm.ko \
  173. $(LINUX_DIR)/lib/ts_fsm.ko
  174. AUTOLOAD:=$(call AutoProbe,ts_kmp ts_bm ts_fsm)
  175. endef
  176. $(eval $(call KernelPackage,lib-textsearch))
  177. define KernelPackage/lib-zlib-inflate
  178. SUBMENU:=$(LIB_MENU)
  179. TITLE:=Zlib support
  180. HIDDEN:=1
  181. KCONFIG:=CONFIG_ZLIB_INFLATE
  182. FILES:=$(LINUX_DIR)/lib/zlib_inflate/zlib_inflate.ko
  183. AUTOLOAD:=$(call AutoProbe,zlib_inflate)
  184. endef
  185. $(eval $(call KernelPackage,lib-zlib-inflate))
  186. define KernelPackage/lib-zlib-deflate
  187. SUBMENU:=$(LIB_MENU)
  188. TITLE:=Zlib support
  189. HIDDEN:=1
  190. KCONFIG:=CONFIG_ZLIB_DEFLATE
  191. FILES:=$(LINUX_DIR)/lib/zlib_deflate/zlib_deflate.ko
  192. AUTOLOAD:=$(call AutoProbe,zlib_deflate)
  193. endef
  194. $(eval $(call KernelPackage,lib-zlib-deflate))
  195. define KernelPackage/lib-cordic
  196. SUBMENU:=$(LIB_MENU)
  197. TITLE:=Cordic function support
  198. KCONFIG:=CONFIG_CORDIC
  199. FILES:=$(LINUX_DIR)/lib/cordic.ko
  200. AUTOLOAD:=$(call AutoProbe,cordic)
  201. endef
  202. define KernelPackage/lib-cordic/description
  203. Kernel module for Cordic function support
  204. endef
  205. $(eval $(call KernelPackage,lib-cordic))
  206. define KernelPackage/asn1-decoder
  207. SUBMENU:=$(LIB_MENU)
  208. TITLE:=Simple ASN1 decoder
  209. KCONFIG:= CONFIG_ASN1
  210. HIDDEN:=1
  211. FILES:=$(LINUX_DIR)/lib/asn1_decoder.ko
  212. endef
  213. $(eval $(call KernelPackage,asn1-decoder))