Config.in 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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 ADK_PACKAGE_BASH
  28. select ADK_PACKAGE_BINUTILS
  29. select ADK_PACKAGE_BZIP2
  30. select ADK_PACKAGE_DIFFUTILS
  31. select ADK_PACKAGE_FILE
  32. select ADK_PACKAGE_GAWK
  33. select ADK_PACKAGE_GCC
  34. select ADK_PACKAGE_GIT
  35. select ADK_PACKAGE_GREP
  36. select ADK_PACKAGE_UCLIBC_DEV if ADK_TARGET_LIB_UCLIBC
  37. select ADK_PACKAGE_EGLIBC_DEV if ADK_TARGET_LIB_EGLIBC
  38. select ADK_PACKAGE_GLIBC_DEV if ADK_TARGET_LIB_GLIBC
  39. select ADK_PACKAGE_LIBNCURSES
  40. select ADK_PACKAGE_LIBNCURSES_DEV
  41. select ADK_PACKAGE_M4
  42. select ADK_PACKAGE_MAKE
  43. select ADK_PACKAGE_PATCH
  44. select ADK_PACKAGE_PKG_CONFIG
  45. select ADK_PACKAGE_MICROPERL
  46. select ADK_PACKAGE_TAR
  47. select ADK_PACKAGE_TSORT
  48. select BUSYBOX_TR
  49. select BUSYBOX_FEATURE_TR_CLASSES
  50. select ADK_PACKAGE_ZLIB
  51. select ADK_PACKAGE_ZLIB_DEV
  52. select ADK_PACKAGE_XZ
  53. help
  54. After bootstrapping a Linux system you might want to
  55. switch to native builds with your target.
  56. If you choose this option, all necessary software needed
  57. for native building will be selected by this option.
  58. config ADK_DEBUG
  59. bool "Enable debug support"
  60. default n
  61. help
  62. All packages and libc will be compiled and packaged with debug information.
  63. Mostly useful for NFS root or big USB/CF or hard disk setups.
  64. config ADK_STATIC
  65. bool "Link applications statically by default"
  66. default n
  67. help
  68. Useful for toolchain only target devices.
  69. config ADK_MAKE_JOBS
  70. int
  71. default 1 if ! ADK_MAKE_PARALLEL
  72. config ADK_MAKE_PARALLEL
  73. prompt "Enable parallel building of packages that claim to support it"
  74. boolean
  75. default n
  76. config ADK_MAKE_JOBS
  77. prompt "How many jobs to use"
  78. int
  79. default 2
  80. depends on ADK_MAKE_PARALLEL
  81. help
  82. The number specified here will be passed to make as N in '-jN'
  83. config ADK_FORCE_PARALLEL
  84. prompt "Force parallel building of all packages (DANGEROUS)"
  85. bool
  86. default n
  87. depends on ADK_MAKE_PARALLEL
  88. help
  89. Do not enable this! It's for testing purposes only.
  90. config ADK_TARGET_IP
  91. prompt "Set target ip address for make check"
  92. string
  93. default "127.0.0.1"
  94. help
  95. choice
  96. prompt "Hostsystem (do not change!)"
  97. config ADK_HOST_LINUX
  98. prompt "Linux"
  99. boolean
  100. config ADK_HOST_FREEBSD
  101. prompt "FreeBSD"
  102. boolean
  103. config ADK_HOST_MIRBSD
  104. prompt "MirBSD"
  105. boolean
  106. config ADK_HOST_OPENBSD
  107. prompt "OpenBSD"
  108. boolean
  109. config ADK_HOST_NETBSD
  110. prompt "NetBSD"
  111. boolean
  112. config ADK_HOST_DARWIN
  113. prompt "Darwin"
  114. boolean
  115. config ADK_HOST_CYGWIN
  116. prompt "Cygwin"
  117. boolean
  118. endchoice
  119. endmenu
  120. source "target/Config.in"
  121. menu "Runtime configuration"
  122. source "target/Config.in.runtime"
  123. endmenu
  124. menu "Package selection"
  125. source "package/Config.in.auto.global"
  126. source "package/Config.in.auto"
  127. endmenu
  128. menu "Kernel configuration"
  129. source "target/linux/Config.in"
  130. endmenu