Config.in.adk 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  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. menu "Global ADK settings"
  4. visible if !ADK_CHOOSE_APPLIANCE
  5. config ADK_HOST
  6. string "webserver for packages and distfiles"
  7. default "openadk.org"
  8. help
  9. Configure host for IPKG package management.
  10. config ADK_DL_DIR
  11. string "download directory for packages"
  12. default ""
  13. help
  14. Configure the download directory for all source packages.
  15. Use an absolute path.
  16. config ADK_EXPERIMENTAL
  17. bool "Enable support for experimental features"
  18. default n
  19. help
  20. This enables combinations of toolchain components or kernel
  21. and packages, which might be unsafe to use.
  22. config ADK_BUILD_WITH_DEBUG
  23. bool "Build everything with debug information and allow debug packages"
  24. default n
  25. help
  26. If you want to create debug packages, you should enable this option.
  27. WARNING: It will use a lot of aditional disk space on you build system!
  28. config ADK_DISABLE_HONOUR_CFLAGS
  29. bool "Disable honour CFLAGS checks globally"
  30. default n
  31. help
  32. Disable honour CFLAGS checks.
  33. config ADK_DISABLE_CHECKSUM
  34. bool "Disable checksum check for downloads globally"
  35. default n
  36. help
  37. Disable checksum checks of downloads.
  38. config ADK_DISABLE_KERNEL_PATCHES
  39. bool "Disable global kernel patches"
  40. default n
  41. help
  42. Disable all global kernel patches.
  43. This might prevent the cross-compilation on
  44. non-Linux targets. Useful for bug reporting on LKML.
  45. config ADK_DISABLE_TARGET_KERNEL_PATCHES
  46. bool "Disable target specific kernel patches"
  47. default n
  48. help
  49. Disable all target specific kernel patches.
  50. This might render a system unusable, when external
  51. kernel patches are required for bootup.
  52. config ADK_WGET_TIMEOUT
  53. int "Set wget timeout"
  54. default 10
  55. help
  56. set wget timeout
  57. config ADK_USE_CCACHE
  58. bool "Use ccache to speedup recompilation"
  59. select ADK_HOST_NEED_CCACHE
  60. default n
  61. help
  62. Useful if you have enough space for the cache and need speedup compilation.
  63. config ADK_MAKE_JOBS
  64. int
  65. default 1 if ! ADK_MAKE_PARALLEL
  66. config ADK_MAKE_PARALLEL
  67. bool "Enable parallel building of packages"
  68. default y
  69. config ADK_MAKE_JOBS
  70. int "How many jobs to use"
  71. default 4
  72. depends on ADK_MAKE_PARALLEL
  73. help
  74. The number specified here will be passed to make as N in '-jN'
  75. config ADK_TARGET_IP
  76. string "Set target ip address for make check"
  77. default "127.0.0.1"
  78. help
  79. IP address of target, when running make check.
  80. config ADK_TARGET_PORT
  81. string "Set target port for make check"
  82. default "2222" if ADK_TARGET_QEMU
  83. default "22"
  84. help
  85. Port to use for SSH when running make check.
  86. choice
  87. prompt "Hostsystem (do not change!)"
  88. config ADK_HOST_LINUX
  89. bool "Linux"
  90. config ADK_HOST_FREEBSD
  91. bool "FreeBSD"
  92. config ADK_HOST_MIRBSD
  93. bool "MirBSD"
  94. config ADK_HOST_OPENBSD
  95. bool "OpenBSD"
  96. config ADK_HOST_NETBSD
  97. bool "NetBSD"
  98. config ADK_HOST_DARWIN
  99. bool "Darwin"
  100. config ADK_HOST_CYGWIN
  101. bool "Cygwin"
  102. endchoice
  103. config ADK_PRELINK
  104. prompt "Prelink binaries and libraries in Image"
  105. boolean
  106. help
  107. Do prelinking for faster loading of binaries.
  108. config ADK_PRELINK_OPTS
  109. string "additional options to pass to prelink"
  110. default "-mR"
  111. depends on ADK_PRELINK
  112. endmenu