Config.in 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. config ADKVERSION
  4. string
  5. option env="ADKVERSION"
  6. config MODULES
  7. bool
  8. default y
  9. config ADK_HAVE_DOT_CONFIG
  10. bool
  11. default y
  12. mainmenu "OpenADK Configuration"
  13. config ADK_CHOOSE_TARGET_SYSTEM
  14. boolean
  15. default y if ADK_CHOOSE_TARGET_SYSTEM_ARM
  16. default y if ADK_CHOOSE_TARGET_SYSTEM_M68K
  17. default y if ADK_CHOOSE_TARGET_SYSTEM_MICROBLAZE
  18. default y if ADK_CHOOSE_TARGET_SYSTEM_MIPS
  19. default y if ADK_CHOOSE_TARGET_SYSTEM_PPC
  20. default y if ADK_CHOOSE_TARGET_SYSTEM_PPC64
  21. default y if ADK_CHOOSE_TARGET_SYSTEM_SPARC
  22. default y if ADK_CHOOSE_TARGET_SYSTEM_SPARC64
  23. default y if ADK_CHOOSE_TARGET_SYSTEM_SH
  24. default y if ADK_CHOOSE_TARGET_SYSTEM_X86
  25. default y if ADK_CHOOSE_TARGET_SYSTEM_X86_64
  26. default n
  27. source "target/config/Config.in"
  28. menu "Runtime configuration"
  29. depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM
  30. source "target/config/Config.in.runtime"
  31. endmenu
  32. menu "Package collection"
  33. depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM
  34. source "target/packages/Config.in"
  35. endmenu
  36. menu "Package selection"
  37. depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM
  38. config ADK_LEAVE_ETC_ALONE
  39. boolean "do not install anything into /etc"
  40. default n
  41. help
  42. Enabling this option will prevent the ADK from installing anything
  43. into /etc. This is useful for highly customised setups with custom
  44. base-files packages.
  45. Package Makefiles can override this setting by passing "force_etc" to
  46. the package-template. to a non-empty value. This is useful for
  47. packages traditionally installing non-config stuff into /etc, like
  48. e.g. ca-certificates.
  49. Note that without further customisation, turning this option
  50. on will almost certainly render the resulting system unusable.
  51. config ADK_INSTALL_PACKAGE_INIT_SCRIPTS
  52. boolean "ship custom init-scripts along with packages"
  53. default y
  54. depends on !ADK_LEAVE_ETC_ALONE
  55. help
  56. Turning this option to false will prevent the ADK from
  57. installing init-scripts (i.e. files in /etc/init.d) for
  58. certain daemons and daemon-like applications.
  59. Note that without further customisation, turning this option
  60. off will almost certainly render the resulting system unusable.
  61. config ADK_INSTALL_PACKAGE_NETWORK_SCRIPTS
  62. boolean "ship custom network-scripts along with packages"
  63. default y
  64. depends on !ADK_LEAVE_ETC_ALONE
  65. help
  66. Turning this option to false will prevent the ADK from
  67. installing network-scripts (i.e. files in /etc/network/) for
  68. packages providing any.
  69. Note that without further customisation, turning this option
  70. off will almost certainly render the resulting system unusable.
  71. source "package/Config.in.auto.global"
  72. source "package/Config.in.auto"
  73. endmenu
  74. config ADK_USE_KERNEL_MINICONFIG
  75. boolean
  76. choice
  77. prompt "Kernel Version"
  78. depends on ADK_TOOLCHAIN_ONLY
  79. config ADK_KERNEL_VERSION_TOOLCHAIN
  80. prompt "3.13.6"
  81. boolean
  82. depends on ADK_TOOLCHAIN_ONLY
  83. endchoice
  84. menu "Kernel configuration"
  85. depends on !ADK_TOOLCHAIN_ONLY && !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM && ADK_TARGET_KERNEL_CUSTOMISING
  86. choice
  87. prompt "Kernel Version"
  88. config ADK_KERNEL_VERSION_3_13_6
  89. prompt "3.13.6"
  90. boolean
  91. config ADK_KERNEL_VERSION_3_12_13
  92. prompt "3.12.13"
  93. boolean
  94. config ADK_KERNEL_VERSION_3_11_10
  95. prompt "3.11.10"
  96. boolean
  97. config ADK_KERNEL_VERSION_3_10_33
  98. prompt "3.10.33"
  99. boolean
  100. config ADK_KERNEL_VERSION_3_4_82
  101. prompt "3.4.82"
  102. boolean
  103. endchoice
  104. config ADK_KERNEL_VERSION
  105. string
  106. default "3.13.6" if ADK_KERNEL_VERSION_3_13_6
  107. default "3.12.13" if ADK_KERNEL_VERSION_3_12_13
  108. default "3.11.10" if ADK_KERNEL_VERSION_3_11_10
  109. default "3.10.33" if ADK_KERNEL_VERSION_3_10_33
  110. default "3.4.82" if ADK_KERNEL_VERSION_3_4_82
  111. help
  112. config ADK_KERNEL_COMP_GZIP_RASPBERRY_PI
  113. depends on ADK_TARGET_SYSTEM_RASPBERRY_PI
  114. boolean
  115. select ADK_KERNEL_RD_GZIP
  116. select ADK_KERNEL_KERNEL_GZIP
  117. select ADK_KERNEL_INITRAMFS_COMPRESSION_GZIP
  118. default y
  119. choice
  120. prompt "Kernel Compression"
  121. depends on !ADK_TARGET_SYSTEM_RASPBERRY_PI
  122. config ADK_KERNEL_COMP_XZ
  123. prompt "use XZ compression"
  124. boolean
  125. select ADK_KERNEL_RD_XZ
  126. select ADK_KERNEL_KERNEL_XZ
  127. select ADK_KERNEL_INITRAMFS_COMPRESSION_XZ
  128. config ADK_KERNEL_COMP_LZMA
  129. prompt "use LZMA compression"
  130. boolean
  131. select ADK_KERNEL_RD_LZMA
  132. select ADK_KERNEL_KERNEL_LZMA
  133. select ADK_KERNEL_INITRAMFS_COMPRESSION_LZMA
  134. config ADK_KERNEL_COMP_LZO
  135. prompt "use LZO compression"
  136. boolean
  137. select ADK_KERNEL_RD_LZO
  138. select ADK_KERNEL_KERNEL_LZO
  139. select ADK_KERNEL_INITRAMFS_COMPRESSION_LZO
  140. config ADK_KERNEL_COMP_GZIP
  141. prompt "use GZIP compression"
  142. boolean
  143. select ADK_KERNEL_RD_GZIP
  144. select ADK_KERNEL_KERNEL_GZIP
  145. select ADK_KERNEL_INITRAMFS_COMPRESSION_GZIP
  146. config ADK_KERNEL_COMP_BZIP2
  147. prompt "use BZIP2 compression"
  148. boolean
  149. select ADK_KERNEL_RD_BZIP2
  150. select ADK_KERNEL_KERNEL_BZIP2
  151. select ADK_KERNEL_INITRAMFS_COMPRESSION_BZIP2
  152. endchoice
  153. config ADK_COMPRESSION_TOOL
  154. string
  155. default "gzip -n9" if ADK_KERNEL_INITRAMFS_COMPRESSION_GZIP
  156. default "bzip2" if ADK_KERNEL_INITRAMFS_COMPRESSION_BZIP2
  157. default "xz --check=crc32" if ADK_KERNEL_INITRAMFS_COMPRESSION_XZ
  158. default "lzma -9" if ADK_KERNEL_INITRAMFS_COMPRESSION_LZMA
  159. default "lzop" if ADK_KERNEL_INITRAMFS_COMPRESSION_LZO
  160. default "gzip -n9"
  161. help
  162. source "target/linux/Config.in"
  163. endmenu
  164. source "target/config/Config.in.adk"
  165. source "toolchain/Config.in"