Config.in.tools 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  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_GIT
  62. bool
  63. default n
  64. config ADK_HOST_BUILD_U_BOOT_XTENSA
  65. bool
  66. default y if ADK_TARGET_ARCH_XTENSA
  67. config ADK_HOST_BUILD_PATCH
  68. bool
  69. default n
  70. config ADK_HOST_BUILD_PKGCONF
  71. bool
  72. default n
  73. config ADK_HOST_BUILD_SED
  74. bool
  75. default n
  76. config ADK_HOST_BUILD_TAR
  77. bool
  78. default n
  79. config ADK_HOST_BUILD_XZ
  80. bool
  81. default n
  82. # optional, but can be provided by host
  83. config ADK_HOST_NEED_CCACHE
  84. bool
  85. default n
  86. config ADK_HOST_BUILD_CCACHE
  87. bool
  88. default n
  89. config ADK_HOST_NEED_CDRTOOLS
  90. bool
  91. default n
  92. config ADK_HOST_BUILD_CDRTOOLS
  93. bool
  94. default n
  95. config ADK_HOST_NEED_GENEXT2FS
  96. bool
  97. default n
  98. config ADK_HOST_BUILD_GENEXT2FS
  99. bool
  100. default n
  101. config ADK_HOST_NEED_LZ4
  102. bool
  103. default n
  104. config ADK_HOST_BUILD_LZ4
  105. bool
  106. default n
  107. config ADK_HOST_NEED_LZMA
  108. bool
  109. default n
  110. config ADK_HOST_BUILD_LZMA
  111. bool
  112. default n
  113. config ADK_HOST_NEED_LZOP
  114. bool
  115. default n
  116. config ADK_HOST_BUILD_LZOP
  117. bool
  118. default n
  119. config ADK_HOST_NEED_MKSH
  120. bool
  121. default n
  122. config ADK_HOST_BUILD_MKSH
  123. bool
  124. default n
  125. config ADK_HOST_NEED_QEMU
  126. bool
  127. default n
  128. config ADK_HOST_BUILD_QEMU
  129. bool
  130. default n
  131. # optional, must be used from OpenADK
  132. config ADK_HOST_NEED_MTD_UTILS
  133. bool
  134. default n
  135. config ADK_HOST_BUILD_MTD_UTILS
  136. bool
  137. default y if ADK_HOST_NEED_MTD_UTILS
  138. default n
  139. config ADK_HOST_BUILD_PATCHELF
  140. bool
  141. default n
  142. config ADK_HOST_NEED_SQUASHFS
  143. bool
  144. default n
  145. config ADK_HOST_BUILD_SQUASHFS
  146. bool
  147. default y if ADK_HOST_NEED_SQUASHFS
  148. default n
  149. config ADK_HOST_NEED_SYSLINUX
  150. bool
  151. default n
  152. config ADK_HOST_BUILD_SYSLINUX
  153. bool
  154. default y if ADK_HOST_NEED_SYSLINUX
  155. default n
  156. config ADK_HOST_BUILD_PCRE
  157. bool
  158. default y if ADK_HOST_DARWIN
  159. default n
  160. config ADK_HOST_BUILD_KMOD
  161. bool
  162. default y if ADK_HOST_LINUX
  163. default n
  164. source "target/config/Config.in.prereq"
  165. config ADK_COMPRESSION_TOOL
  166. string
  167. default "gzip -n9" if ADK_KERNEL_INITRAMFS_COMPRESSION_GZIP
  168. default "bzip2" if ADK_KERNEL_INITRAMFS_COMPRESSION_BZIP2
  169. default "xz -v --check=crc32 --lzma2=dict=1MiB" if ADK_KERNEL_INITRAMFS_COMPRESSION_XZ
  170. default "lz4c -l" if ADK_KERNEL_INITRAMFS_COMPRESSION_LZ4
  171. default "lzma -9" if ADK_KERNEL_INITRAMFS_COMPRESSION_LZMA
  172. default "lzop" if ADK_KERNEL_INITRAMFS_COMPRESSION_LZO
  173. default "gzip -n9"
  174. help