Config.in 2.3 KB

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