Config.in 3.3 KB

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