Config.in 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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_COMM
  29. select BUSYBOX_EXPR
  30. select BUSYBOX_INSTALL
  31. select BUSYBOX_MKTEMP
  32. select BUSYBOX_UNZIP
  33. select BUSYBOX_RMDIR
  34. select BUSYBOX_SPLIT
  35. select BUSYBOX_TAC
  36. select BUSYBOX_TEE
  37. select BUSYBOX_WGET
  38. select BUSYBOX_YES
  39. select BUSYBOX_TRUE
  40. select ADK_PACKAGE_BASH
  41. select ADK_PACKAGE_BINUTILS
  42. select ADK_PACKAGE_BZIP2
  43. select ADK_PACKAGE_CPIO
  44. select ADK_PACKAGE_DIFFUTILS
  45. select ADK_PACKAGE_FILE
  46. select ADK_PACKAGE_GAWK
  47. select ADK_PACKAGE_GCC
  48. select ADK_PACKAGE_GIT
  49. select ADK_PACKAGE_GREP
  50. select ADK_PACKAGE_UCLIBC_DEV if ADK_TARGET_LIB_UCLIBC
  51. select ADK_PACKAGE_EGLIBC_DEV if ADK_TARGET_LIB_EGLIBC
  52. select ADK_PACKAGE_GLIBC_DEV if ADK_TARGET_LIB_GLIBC
  53. select ADK_PACKAGE_LIBNCURSES
  54. select ADK_PACKAGE_LIBNCURSES_DEV
  55. select ADK_PACKAGE_M4
  56. select ADK_PACKAGE_MAKE
  57. select ADK_PACKAGE_MKSH
  58. select ADK_PACKAGE_PATCH
  59. select ADK_PACKAGE_PKG_CONFIG
  60. select ADK_PACKAGE_MICROPERL
  61. select ADK_PACKAGE_TAR
  62. select ADK_PACKAGE_TSORT
  63. select ADK_PACKAGE_ZLIB
  64. select ADK_PACKAGE_ZLIB_DEV
  65. select ADK_PACKAGE_XZ
  66. help
  67. After bootstrapping a Linux system you might want to
  68. switch to native builds with your target.
  69. If you choose this option, all necessary software needed
  70. for native building will be selected.
  71. config ADK_DEBUG
  72. bool "Enable debug support"
  73. default n
  74. help
  75. All packages and libc will be compiled and packaged with debug information.
  76. Mostly useful for NFS root or big USB/CF disk setups.
  77. config ADK_STATIC
  78. bool "Link applications statically by default"
  79. default n
  80. help
  81. Useful for toolchain only target devices.
  82. config ADK_MAKE_JOBS
  83. int
  84. default 1 if ! ADK_MAKE_PARALLEL
  85. config ADK_MAKE_PARALLEL
  86. prompt "Enable parallel building of packages that claim to support it"
  87. boolean
  88. default n
  89. config ADK_MAKE_JOBS
  90. prompt "How many jobs to use"
  91. int
  92. default 2
  93. depends on ADK_MAKE_PARALLEL
  94. help
  95. The number specified here will be passed to make as N in '-jN'
  96. config ADK_FORCE_PARALLEL
  97. prompt "Force parallel building of all packages (DANGEROUS)"
  98. bool
  99. default n
  100. depends on ADK_MAKE_PARALLEL
  101. help
  102. Do not enable this! It's for testing purposes only.
  103. choice
  104. prompt "Hostsystem (do not change!)"
  105. config ADK_HOST_LINUX
  106. prompt "Linux"
  107. boolean
  108. config ADK_HOST_FREEBSD
  109. prompt "FreeBSD"
  110. boolean
  111. config ADK_HOST_MIRBSD
  112. prompt "MirBSD"
  113. boolean
  114. config ADK_HOST_OPENBSD
  115. prompt "OpenBSD"
  116. boolean
  117. config ADK_HOST_NETBSD
  118. prompt "NetBSD"
  119. boolean
  120. config ADK_HOST_DARWIN
  121. prompt "Darwin"
  122. boolean
  123. config ADK_HOST_CYGWIN
  124. prompt "Cygwin"
  125. boolean
  126. endchoice
  127. endmenu
  128. source "target/Config.in"
  129. menu "Runtime configuration"
  130. config ADK_RUNTIME_HOSTNAME
  131. string "hostname for the embedded system"
  132. default "linux"
  133. help
  134. Set your target hostname.
  135. config ADK_RUNTIME_SSH_PUBKEY
  136. string "SSH public key (root user only)"
  137. default ""
  138. help
  139. Paste your generated SSH public key here and it will be embedded into
  140. the built image, so you can use it to login instantly.
  141. config ADK_RUNTIME_PASSWORD
  142. string "root password for the embedded system"
  143. default "linux123"
  144. help
  145. Predefine the root password enabled in the built image.
  146. config ADK_RUNTIME_TIMEZONE
  147. string "timezone for the embedded system"
  148. default "Europe/Berlin"
  149. help
  150. endmenu
  151. menu "Package selection"
  152. source "package/Config.in.auto.global"
  153. source "package/Config.in.auto"
  154. endmenu
  155. menu "Kernel configuration"
  156. source "target/linux/Config.in"
  157. endmenu