Config.in 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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_DEVELSYSTEM
  15. bool "Compile a ADK development system"
  16. default n
  17. select BUSYBOX_CMP
  18. select BUSYBOX_EXPR
  19. select BUSYBOX_MKTEMP
  20. select BUSYBOX_UNZIP
  21. select BUSYBOX_TEE
  22. select BUSYBOX_INSTALL
  23. select ADK_PACKAGE_AUTOCONF
  24. select ADK_PACKAGE_AUTOMAKE
  25. select ADK_PACKAGE_BASH
  26. select ADK_PACKAGE_BINUTILS
  27. select ADK_PACKAGE_BZIP2
  28. select ADK_PACKAGE_CPIO
  29. select ADK_PACKAGE_DIFFUTILS
  30. select ADK_PACKAGE_FILE
  31. select ADK_PACKAGE_GAWK
  32. select ADK_PACKAGE_GCC
  33. select ADK_PACKAGE_GIT
  34. select ADK_PACKAGE_GREP
  35. select ADK_PACKAGE_UCLIBC_DEV if ADK_TARGET_LIB_UCLIBC
  36. select ADK_PACKAGE_EGLIBC_DEV if ADK_TARGET_LIB_EGLIBC
  37. select ADK_PACKAGE_GLIBC_DEV if ADK_TARGET_LIB_GLIBC
  38. select ADK_PACKAGE_LIBNCURSES
  39. select ADK_PACKAGE_LIBNCURSES_DEV
  40. select ADK_PACKAGE_LIBTOOL
  41. select ADK_PACKAGE_M4
  42. select ADK_PACKAGE_MAKE
  43. select ADK_PACKAGE_MKSH
  44. select ADK_PACKAGE_PATCH
  45. select ADK_PACKAGE_MICROPERL
  46. select ADK_PACKAGE_TAR
  47. select ADK_PACKAGE_WGET
  48. select ADK_PACKAGE_ZLIB
  49. select ADK_PACKAGE_ZLIB_DEV
  50. select ADK_PACKAGE_XZ
  51. help
  52. After bootstrapping a Linux system you might want to
  53. switch to native builds with your target.
  54. If you choose this option, all necessary software needed
  55. for native building will be selected.
  56. config ADK_DEBUG
  57. bool "Enable debug support"
  58. default n
  59. help
  60. All packages and libc will be compiled and packaged with debug information.
  61. Mostly useful for NFS root or big USB/CF disk setups.
  62. config ADK_STATIC
  63. bool "Link applications statically by default"
  64. default n
  65. help
  66. Useful for toolchain only target devices.
  67. config ADK_MAKE_JOBS
  68. int
  69. default 1 if ! ADK_MAKE_PARALLEL
  70. config ADK_MAKE_PARALLEL
  71. prompt "Enable parallel building of packages that claim to support it"
  72. boolean
  73. default n
  74. config ADK_MAKE_JOBS
  75. prompt "How many jobs to use"
  76. int
  77. default 2
  78. depends on ADK_MAKE_PARALLEL
  79. help
  80. The number specified here will be passed to make as N in '-jN'
  81. config ADK_FORCE_PARALLEL
  82. prompt "Force parallel building of all packages (DANGEROUS)"
  83. bool
  84. default n
  85. depends on ADK_MAKE_PARALLEL
  86. help
  87. Do not enable this! It's for testing purposes only.
  88. choice
  89. prompt "Hostsystem (do not change!)"
  90. config ADK_HOST_LINUX
  91. prompt "Linux"
  92. boolean
  93. config ADK_HOST_FREEBSD
  94. prompt "FreeBSD"
  95. boolean
  96. config ADK_HOST_MIRBSD
  97. prompt "MirBSD"
  98. boolean
  99. config ADK_HOST_OPENBSD
  100. prompt "OpenBSD"
  101. boolean
  102. config ADK_HOST_NETBSD
  103. prompt "NetBSD"
  104. boolean
  105. config ADK_HOST_DARWIN
  106. prompt "Darwin"
  107. boolean
  108. config ADK_HOST_CYGWIN
  109. prompt "Cygwin"
  110. boolean
  111. endchoice
  112. endmenu
  113. source "target/Config.in"
  114. source "package/Config.in"