lib.mk 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  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. KCONFIG:= \
  79. CONFIG_LZO_COMPRESS \
  80. CONFIG_LZO_DECOMPRESS
  81. HIDDEN:=1
  82. FILES:= \
  83. $(LINUX_DIR)/lib/lzo/lzo_compress.ko \
  84. $(LINUX_DIR)/lib/lzo/lzo_decompress.ko
  85. AUTOLOAD:=$(call AutoProbe,lzo_compress lzo_decompress)
  86. endef
  87. define KernelPackage/lib-lzo/description
  88. Kernel module for LZO compression/decompression support
  89. endef
  90. $(eval $(call KernelPackage,lib-lzo))
  91. define KernelPackage/lib-lz4
  92. SUBMENU:=$(LIB_MENU)
  93. TITLE:=LZ4 support
  94. HIDDEN:=1
  95. KCONFIG:= \
  96. CONFIG_LZ4_COMPRESS \
  97. CONFIG_LZ4_DECOMPRESS
  98. FILES:= \
  99. $(LINUX_DIR)/lib/lz4/lz4_compress.ko \
  100. $(LINUX_DIR)/lib/lz4/lz4_decompress.ko
  101. AUTOLOAD:=$(call AutoProbe,lz4_compress lz4_decompress)
  102. endef
  103. define KernelPackage/lib-lz4/description
  104. Kernel module for LZ4 compression/decompression support
  105. endef
  106. $(eval $(call KernelPackage,lib-lz4))
  107. define KernelPackage/lib-raid6
  108. SUBMENU:=$(LIB_MENU)
  109. TITLE:=RAID6 algorithm support
  110. HIDDEN:=1
  111. KCONFIG:=CONFIG_RAID6_PQ
  112. FILES:=$(LINUX_DIR)/lib/raid6/raid6_pq.ko
  113. AUTOLOAD:=$(call AutoProbe,raid6_pq)
  114. endef
  115. define KernelPackage/lib-raid6/description
  116. Kernel module for RAID6 algorithms
  117. endef
  118. $(eval $(call KernelPackage,lib-raid6))
  119. define KernelPackage/lib-xor
  120. SUBMENU:=$(LIB_MENU)
  121. TITLE:=XOR blocks algorithm support
  122. HIDDEN:=1
  123. KCONFIG:=CONFIG_XOR_BLOCKS
  124. ifneq ($(wildcard $(LINUX_DIR)/arch/arm/lib/xor-neon.ko),)
  125. FILES:= \
  126. $(LINUX_DIR)/crypto/xor.ko \
  127. $(LINUX_DIR)/arch/arm/lib/xor-neon.ko
  128. AUTOLOAD:=$(call AutoProbe,xor-neon xor)
  129. else
  130. FILES:=$(LINUX_DIR)/crypto/xor.ko
  131. AUTOLOAD:=$(call AutoProbe,xor)
  132. endif
  133. endef
  134. define KernelPackage/lib-xor/description
  135. Kernel module for XOR blocks algorithms
  136. endef
  137. $(eval $(call KernelPackage,lib-xor))
  138. define KernelPackage/lib-textsearch
  139. SUBMENU:=$(LIB_MENU)
  140. TITLE:=Textsearch support
  141. KCONFIG:= \
  142. CONFIG_TEXTSEARCH=y \
  143. CONFIG_TEXTSEARCH_KMP \
  144. CONFIG_TEXTSEARCH_BM \
  145. CONFIG_TEXTSEARCH_FSM
  146. FILES:= \
  147. $(LINUX_DIR)/lib/ts_kmp.ko \
  148. $(LINUX_DIR)/lib/ts_bm.ko \
  149. $(LINUX_DIR)/lib/ts_fsm.ko
  150. AUTOLOAD:=$(call AutoProbe,ts_kmp ts_bm ts_fsm)
  151. endef
  152. $(eval $(call KernelPackage,lib-textsearch))
  153. define KernelPackage/lib-zlib-inflate
  154. SUBMENU:=$(LIB_MENU)
  155. TITLE:=Zlib support
  156. HIDDEN:=1
  157. KCONFIG:=CONFIG_ZLIB_INFLATE
  158. FILES:=$(LINUX_DIR)/lib/zlib_inflate/zlib_inflate.ko
  159. AUTOLOAD:=$(call AutoProbe,zlib_inflate)
  160. endef
  161. $(eval $(call KernelPackage,lib-zlib-inflate))
  162. define KernelPackage/lib-zlib-deflate
  163. SUBMENU:=$(LIB_MENU)
  164. TITLE:=Zlib support
  165. HIDDEN:=1
  166. KCONFIG:=CONFIG_ZLIB_DEFLATE
  167. FILES:=$(LINUX_DIR)/lib/zlib_deflate/zlib_deflate.ko
  168. AUTOLOAD:=$(call AutoProbe,zlib_deflate)
  169. endef
  170. $(eval $(call KernelPackage,lib-zlib-deflate))
  171. define KernelPackage/lib-cordic
  172. SUBMENU:=$(LIB_MENU)
  173. TITLE:=Cordic function support
  174. KCONFIG:=CONFIG_CORDIC
  175. FILES:=$(LINUX_DIR)/lib/cordic.ko
  176. AUTOLOAD:=$(call AutoProbe,cordic)
  177. endef
  178. define KernelPackage/lib-cordic/description
  179. Kernel module for Cordic function support
  180. endef
  181. $(eval $(call KernelPackage,lib-cordic))