Config.in 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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. mainmenu "OpenADK Configuration"
  7. config MODULES
  8. bool
  9. default y
  10. config ADK_HAVE_DOT_CONFIG
  11. bool
  12. default y
  13. menu "ADK settings"
  14. config ADK_VENDOR
  15. string "vendor name"
  16. default "openadk"
  17. help
  18. Vendor string is used for toolchain.
  19. config ADK_HOST
  20. string "webserver for packages and distfiles"
  21. default "www.openadk.org"
  22. help
  23. Configure host for IPKG package management.
  24. config ADK_DEVELSYSTEM
  25. bool "Compile a ADK development system"
  26. default n
  27. select BUSYBOX_CMP
  28. select BUSYBOX_EXPR
  29. select BUSYBOX_INSTALL
  30. select BUSYBOX_MKTEMP
  31. select BUSYBOX_UNZIP
  32. select BUSYBOX_TAC
  33. select BUSYBOX_TEE
  34. select BUSYBOX_WGET
  35. select BUSYBOX_YES
  36. select ADK_PACKAGE_BASH
  37. select ADK_PACKAGE_BINUTILS
  38. select ADK_PACKAGE_BZIP2
  39. select ADK_PACKAGE_CPIO
  40. select ADK_PACKAGE_DIFFUTILS
  41. select ADK_PACKAGE_FILE
  42. select ADK_PACKAGE_GAWK
  43. select ADK_PACKAGE_GCC
  44. select ADK_PACKAGE_GIT
  45. select ADK_PACKAGE_GREP
  46. select ADK_PACKAGE_UCLIBC_DEV if ADK_TARGET_LIB_UCLIBC
  47. select ADK_PACKAGE_EGLIBC_DEV if ADK_TARGET_LIB_EGLIBC
  48. select ADK_PACKAGE_GLIBC_DEV if ADK_TARGET_LIB_GLIBC
  49. select ADK_PACKAGE_LIBNCURSES
  50. select ADK_PACKAGE_LIBNCURSES_DEV
  51. select ADK_PACKAGE_M4
  52. select ADK_PACKAGE_MAKE
  53. select ADK_PACKAGE_MKSH
  54. select ADK_PACKAGE_PATCH
  55. select ADK_PACKAGE_PKG_CONFIG
  56. select ADK_PACKAGE_MICROPERL
  57. select ADK_PACKAGE_TAR
  58. select ADK_PACKAGE_TSORT
  59. select ADK_PACKAGE_ZLIB
  60. select ADK_PACKAGE_ZLIB_DEV
  61. select ADK_PACKAGE_XZ
  62. help
  63. After bootstrapping a Linux system you might want to
  64. switch to native builds with your target.
  65. If you choose this option, all necessary software needed
  66. for native building will be selected.
  67. config ADK_DEBUG
  68. bool "Enable debug support"
  69. default n
  70. help
  71. All packages and libc will be compiled and packaged with debug information.
  72. Mostly useful for NFS root or big USB/CF disk setups.
  73. config ADK_STATIC
  74. bool "Link applications statically by default"
  75. default n
  76. help
  77. Useful for toolchain only target devices.
  78. config ADK_MAKE_JOBS
  79. int
  80. default 1 if ! ADK_MAKE_PARALLEL
  81. config ADK_MAKE_PARALLEL
  82. prompt "Enable parallel building of packages that claim to support it"
  83. boolean
  84. default n
  85. config ADK_MAKE_JOBS
  86. prompt "How many jobs to use"
  87. int
  88. default 2
  89. depends on ADK_MAKE_PARALLEL
  90. help
  91. The number specified here will be passed to make as N in '-jN'
  92. config ADK_FORCE_PARALLEL
  93. prompt "Force parallel building of all packages (DANGEROUS)"
  94. bool
  95. default n
  96. depends on ADK_MAKE_PARALLEL
  97. help
  98. Do not enable this! It's for testing purposes only.
  99. choice
  100. prompt "Hostsystem (do not change!)"
  101. config ADK_HOST_LINUX
  102. prompt "Linux"
  103. boolean
  104. config ADK_HOST_FREEBSD
  105. prompt "FreeBSD"
  106. boolean
  107. config ADK_HOST_MIRBSD
  108. prompt "MirBSD"
  109. boolean
  110. config ADK_HOST_OPENBSD
  111. prompt "OpenBSD"
  112. boolean
  113. config ADK_HOST_NETBSD
  114. prompt "NetBSD"
  115. boolean
  116. config ADK_HOST_DARWIN
  117. prompt "Darwin"
  118. boolean
  119. config ADK_HOST_CYGWIN
  120. prompt "Cygwin"
  121. boolean
  122. endchoice
  123. endmenu
  124. source "target/Config.in"
  125. menu "Runtime configuration"
  126. config ADK_RUNTIME_HOSTNAME
  127. string "hostname for the embedded system"
  128. default "linux"
  129. help
  130. Set your target hostname.
  131. config ADK_RUNTIME_SSH_PUBKEY
  132. string "SSH public key (root user only)"
  133. default ""
  134. help
  135. Paste your generated SSH public key here and it will be embedded into
  136. the built image, so you can use it to login instantly.
  137. config ADK_RUNTIME_PASSWORD
  138. string "root password for the embedded system"
  139. default "linux123"
  140. help
  141. Predefine the root password enabled in the built image.
  142. config ADK_RUNTIME_TIMEZONE
  143. string "timezone for the embedded system"
  144. default "Europe/Berlin"
  145. help
  146. endmenu
  147. menu "Package selection"
  148. config ADK_ENABLE_IPV6
  149. prompt "enable IPv6 globally"
  150. boolean
  151. default y
  152. # FIXME: selecting stuff here is ugly, better fix package flavours to
  153. # support a symbol-value-based default (i.e., "default y if IPV6")
  154. select ADK_PACKAGE_NFS_UTILS_WITH_TIRPC if ADK_PACKAGE_NFS_UTILS != n
  155. help
  156. This enables IPv6 support in all related applications. Basically this
  157. just means passing --enable-ipv6 to the configure script, but the
  158. exception proves the rule. ;)
  159. source "package/Config.in.auto.global"
  160. source "package/Config.in.auto"
  161. endmenu
  162. menu "Kernel configuration"
  163. source "target/linux/Config.in"
  164. endmenu