Config.in.tools 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. # always required from OpenADK
  2. config ADK_HOST_BUILD_HEIRLOOM_CPIO
  3. bool
  4. default y
  5. config ADK_HOST_BUILD_ADK_HELPER
  6. bool
  7. default y
  8. config ADK_HOST_BUILD_ELFTOAOUT
  9. bool
  10. default y if ADK_TARGET_ARCH_SPARC
  11. config ADK_HOST_BUILD_AUTOCONF
  12. bool
  13. default y
  14. config ADK_HOST_BUILD_AUTOMAKE
  15. bool
  16. default y
  17. config ADK_HOST_BUILD_BISON
  18. bool
  19. default y
  20. config ADK_HOST_BUILD_FLEX
  21. bool
  22. default y
  23. config ADK_HOST_BUILD_M4
  24. bool
  25. default y
  26. config ADK_HOST_BUILD_LIBTOOL
  27. bool
  28. default y
  29. config ADK_HOST_BUILD_LIBRESSL
  30. bool
  31. default n
  32. config ADK_HOST_BUILD_WGET
  33. bool
  34. default n
  35. # always required, but can be provided by host
  36. config ADK_HOST_BUILD_BASH
  37. bool
  38. default n
  39. config ADK_HOST_BUILD_BC
  40. bool
  41. select ADK_HOST_BUILD_FLEX
  42. default n
  43. config ADK_HOST_BUILD_BZIP2
  44. bool
  45. default n
  46. config ADK_HOST_BUILD_FILE
  47. bool
  48. default n
  49. config ADK_HOST_BUILD_FINDUTILS
  50. bool
  51. default n
  52. config ADK_HOST_BUILD_GAWK
  53. bool
  54. default n
  55. config ADK_HOST_BUILD_GREP
  56. bool
  57. default n
  58. config ADK_HOST_BUILD_U_BOOT
  59. bool
  60. default n
  61. config ADK_HOST_BUILD_U_BOOT_XTENSA
  62. bool
  63. default y if ADK_TARGET_ARCH_XTENSA
  64. config ADK_HOST_BUILD_PATCH
  65. bool
  66. default n
  67. config ADK_HOST_BUILD_PKGCONF
  68. bool
  69. default n
  70. config ADK_HOST_BUILD_SED
  71. bool
  72. default n
  73. config ADK_HOST_BUILD_TAR
  74. bool
  75. default n
  76. config ADK_HOST_BUILD_XZ
  77. bool
  78. default n
  79. # optional, but can be provided by host
  80. config ADK_HOST_NEED_CCACHE
  81. bool
  82. default n
  83. config ADK_HOST_BUILD_CCACHE
  84. bool
  85. default n
  86. config ADK_HOST_NEED_CDRTOOLS
  87. bool
  88. default n
  89. config ADK_HOST_BUILD_CDRTOOLS
  90. bool
  91. default n
  92. config ADK_HOST_NEED_GENEXT2FS
  93. bool
  94. default n
  95. config ADK_HOST_BUILD_GENEXT2FS
  96. bool
  97. default n
  98. config ADK_HOST_NEED_LZ4
  99. bool
  100. default n
  101. config ADK_HOST_BUILD_LZ4
  102. bool
  103. default n
  104. config ADK_HOST_NEED_LZMA
  105. bool
  106. default n
  107. config ADK_HOST_BUILD_LZMA
  108. bool
  109. default n
  110. config ADK_HOST_NEED_LZOP
  111. bool
  112. default n
  113. config ADK_HOST_BUILD_LZOP
  114. bool
  115. default n
  116. config ADK_HOST_NEED_MKSH
  117. bool
  118. default n
  119. config ADK_HOST_BUILD_MKSH
  120. bool
  121. default n
  122. config ADK_HOST_NEED_QEMU
  123. bool
  124. default n
  125. config ADK_HOST_BUILD_QEMU
  126. bool
  127. default n
  128. config ADK_HOST_NEED_COREUTILS
  129. bool
  130. default y if ADK_TARGET_BOARD_BCM28XX
  131. default n
  132. config ADK_HOST_BUILD_COREUTILS
  133. bool
  134. default n
  135. config ADK_HOST_BUILD_UTIL_LINUX
  136. bool
  137. default n
  138. # optional, must be used from OpenADK
  139. config ADK_HOST_NEED_MTD_UTILS
  140. bool
  141. default n
  142. config ADK_HOST_BUILD_MTD_UTILS
  143. bool
  144. select ADK_HOST_BUILD_UTIL_LINUX
  145. default y if ADK_HOST_NEED_MTD_UTILS
  146. default n
  147. config ADK_HOST_BUILD_PATCHELF
  148. bool
  149. default n
  150. config ADK_HOST_NEED_OPKG
  151. bool
  152. default n
  153. config ADK_HOST_BUILD_OPKG
  154. bool
  155. default y if ADK_HOST_NEED_OPKG
  156. default n
  157. config ADK_HOST_NEED_SQUASHFS
  158. bool
  159. default n
  160. config ADK_HOST_BUILD_SQUASHFS
  161. bool
  162. select ADK_HOST_BUILD_XZ
  163. default y if ADK_HOST_NEED_SQUASHFS
  164. default n
  165. config ADK_HOST_NEED_SYSLINUX
  166. bool
  167. default n
  168. config ADK_HOST_BUILD_SYSLINUX
  169. bool
  170. default y if ADK_HOST_NEED_SYSLINUX
  171. default n
  172. config ADK_HOST_BUILD_PCRE
  173. bool
  174. default y if ADK_HOST_DARWIN
  175. default n
  176. config ADK_HOST_BUILD_KMOD
  177. bool
  178. default n
  179. source "target/config/Config.in.prereq"
  180. config ADK_COMPRESSION_TOOL
  181. string
  182. default "gzip -n9" if ADK_KERNEL_INITRAMFS_COMPRESSION_GZIP
  183. default "bzip2" if ADK_KERNEL_INITRAMFS_COMPRESSION_BZIP2
  184. default "xz -v --check=crc32 --lzma2=dict=1MiB" if ADK_KERNEL_INITRAMFS_COMPRESSION_XZ
  185. default "lz4c -l" if ADK_KERNEL_INITRAMFS_COMPRESSION_LZ4
  186. default "lzma -9" if ADK_KERNEL_INITRAMFS_COMPRESSION_LZMA
  187. default "lzop" if ADK_KERNEL_INITRAMFS_COMPRESSION_LZO
  188. default "gzip -n9"
  189. help