Config.in 930 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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_MAKE_JOBS
  15. int
  16. default 1 if ! ADK_MAKE_PARALLEL
  17. config ADK_MAKE_PARALLEL
  18. prompt "Enable parallel building of packages that claim to support it"
  19. boolean
  20. default n
  21. config ADK_MAKE_JOBS
  22. prompt "How many jobs to use"
  23. int
  24. default 2
  25. depends on ADK_MAKE_PARALLEL
  26. help
  27. The number specified here will be passed to make as N in '-jN'
  28. config ADK_FORCE_PARALLEL
  29. prompt "Force parallel building of all packages (DANGEROUS)"
  30. bool
  31. default n
  32. depends on ADK_MAKE_PARALLEL
  33. help
  34. Do not enable this! It's for testing purposes only.
  35. endmenu
  36. source "target/Config.in"
  37. source "package/Config.in"