Config.in 2.6 KB

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