Config.in 3.8 KB

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