Config.in 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  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 "Package collection"
  29. depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM
  30. source "target/packages/Config.in"
  31. endmenu
  32. menu "Package selection"
  33. depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM
  34. config ADK_LEAVE_ETC_ALONE
  35. boolean "do not install anything into /etc"
  36. default n
  37. help
  38. Enabling this option will prevent the ADK from installing anything
  39. into /etc. This is useful for highly customised setups with custom
  40. base-files packages.
  41. Package Makefiles can override this setting by passing "force_etc" to
  42. the package-template. to a non-empty value. This is useful for
  43. packages traditionally installing non-config stuff into /etc, like
  44. e.g. ca-certificates.
  45. Note that without further customisation, turning this option
  46. on will almost certainly render the resulting system unusable.
  47. config ADK_INSTALL_PACKAGE_INIT_SCRIPTS
  48. boolean "ship custom init-scripts along with packages"
  49. default y
  50. depends on !ADK_LEAVE_ETC_ALONE
  51. help
  52. Turning this option to false will prevent the ADK from
  53. installing init-scripts (i.e. files in /etc/init.d) for
  54. certain daemons and daemon-like applications.
  55. Note that without further customisation, turning this option
  56. off will almost certainly render the resulting system unusable.
  57. config ADK_INSTALL_PACKAGE_NETWORK_SCRIPTS
  58. boolean "ship custom network-scripts along with packages"
  59. default y
  60. depends on !ADK_LEAVE_ETC_ALONE
  61. help
  62. Turning this option to false will prevent the ADK from
  63. installing network-scripts (i.e. files in /etc/network/) for
  64. packages providing any.
  65. Note that without further customisation, turning this option
  66. off will almost certainly render the resulting system unusable.
  67. source "package/Config.in.auto.global"
  68. source "package/Config.in.auto"
  69. endmenu
  70. menu "Runtime configuration"
  71. depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM
  72. source "target/config/Config.in.runtime"
  73. endmenu
  74. choice
  75. prompt "Kernel Version"
  76. depends on ADK_TOOLCHAIN_ONLY
  77. config ADK_KERNEL_VERSION_TOOLCHAIN
  78. prompt "3.13.7"
  79. boolean
  80. depends on ADK_TOOLCHAIN_ONLY
  81. endchoice
  82. menu "Kernel configuration"
  83. depends on !ADK_TOOLCHAIN_ONLY && !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM && ADK_TARGET_KERNEL_CUSTOMISING
  84. choice
  85. prompt "Kernel Version"
  86. config ADK_KERNEL_VERSION_3_13_7
  87. prompt "3.13.7"
  88. boolean
  89. config ADK_KERNEL_VERSION_3_12_14
  90. prompt "3.12.14"
  91. boolean
  92. config ADK_KERNEL_VERSION_3_11_10
  93. prompt "3.11.10"
  94. boolean
  95. config ADK_KERNEL_VERSION_3_10_34
  96. prompt "3.10.34"
  97. boolean
  98. config ADK_KERNEL_VERSION_3_4_84
  99. prompt "3.4.84"
  100. boolean
  101. endchoice
  102. config ADK_KERNEL_VERSION
  103. string
  104. default "3.13.7" if ADK_KERNEL_VERSION_3_13_7
  105. default "3.12.14" if ADK_KERNEL_VERSION_3_12_14
  106. default "3.11.10" if ADK_KERNEL_VERSION_3_11_10
  107. default "3.10.34" if ADK_KERNEL_VERSION_3_10_34
  108. default "3.4.84" if ADK_KERNEL_VERSION_3_4_84
  109. help
  110. config ADK_KERNEL_COMP_GZIP_RASPBERRY_PI
  111. depends on ADK_TARGET_SYSTEM_RASPBERRY_PI
  112. boolean
  113. select ADK_KERNEL_RD_GZIP
  114. select ADK_KERNEL_KERNEL_GZIP
  115. select ADK_KERNEL_INITRAMFS_COMPRESSION_GZIP
  116. default y
  117. choice
  118. prompt "Kernel Compression"
  119. depends on !ADK_TARGET_SYSTEM_RASPBERRY_PI
  120. config ADK_KERNEL_COMP_XZ
  121. prompt "use XZ compression"
  122. boolean
  123. select ADK_KERNEL_RD_XZ
  124. select ADK_KERNEL_KERNEL_XZ
  125. select ADK_KERNEL_INITRAMFS_COMPRESSION_XZ
  126. config ADK_KERNEL_COMP_LZMA
  127. prompt "use LZMA compression"
  128. boolean
  129. select ADK_KERNEL_RD_LZMA
  130. select ADK_KERNEL_KERNEL_LZMA
  131. select ADK_KERNEL_INITRAMFS_COMPRESSION_LZMA
  132. config ADK_KERNEL_COMP_LZO
  133. prompt "use LZO compression"
  134. boolean
  135. select ADK_KERNEL_RD_LZO
  136. select ADK_KERNEL_KERNEL_LZO
  137. select ADK_KERNEL_INITRAMFS_COMPRESSION_LZO
  138. config ADK_KERNEL_COMP_GZIP
  139. prompt "use GZIP compression"
  140. boolean
  141. select ADK_KERNEL_RD_GZIP
  142. select ADK_KERNEL_KERNEL_GZIP
  143. select ADK_KERNEL_INITRAMFS_COMPRESSION_GZIP
  144. config ADK_KERNEL_COMP_BZIP2
  145. prompt "use BZIP2 compression"
  146. boolean
  147. select ADK_KERNEL_RD_BZIP2
  148. select ADK_KERNEL_KERNEL_BZIP2
  149. select ADK_KERNEL_INITRAMFS_COMPRESSION_BZIP2
  150. endchoice
  151. config ADK_COMPRESSION_TOOL
  152. string
  153. default "gzip -n9" if ADK_KERNEL_INITRAMFS_COMPRESSION_GZIP
  154. default "bzip2" if ADK_KERNEL_INITRAMFS_COMPRESSION_BZIP2
  155. default "xz --check=crc32" if ADK_KERNEL_INITRAMFS_COMPRESSION_XZ
  156. default "lzma -9" if ADK_KERNEL_INITRAMFS_COMPRESSION_LZMA
  157. default "lzop" if ADK_KERNEL_INITRAMFS_COMPRESSION_LZO
  158. default "gzip -n9"
  159. help
  160. source "target/linux/Config.in"
  161. endmenu
  162. source "target/config/Config.in.adk"
  163. source "toolchain/Config.in"