Config.in.adk 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. config ADK_HOST
  5. string "webserver for packages and distfiles"
  6. default "www.openadk.org"
  7. help
  8. Configure host for IPKG package management.
  9. config ADK_DL_DIR
  10. string "download directory for packages"
  11. default ""
  12. help
  13. Configure the download directory for all source packages.
  14. Use an absolute path.
  15. config ADK_DISABLE_HONOUR_CFLAGS
  16. bool "Disable honour CFLAGS checks globally"
  17. default n
  18. help
  19. Disable honour CFLAGS checks.
  20. config ADK_DISABLE_KERNEL_PATCHES
  21. bool "Disable global kernel patches"
  22. default n
  23. help
  24. Disable all global kernel patches.
  25. This might prevent the cross-compilation on
  26. non-Linux targets. Useful for bug reporting on LKML.
  27. config ADK_DISABLE_TARGET_KERNEL_PATCHES
  28. bool "Disable target specific kernel patches"
  29. default n
  30. help
  31. Disable all target specific kernel patches.
  32. This might render a system unusable, when external
  33. kernel patches are required for bootup.
  34. config ADK_WGET_TIMEOUT
  35. int "Set wget timeout"
  36. default 10
  37. help
  38. set wget timeout
  39. config ADK_USE_CCACHE
  40. bool "Use ccache to speedup recompilation"
  41. select ADK_HOST_NEED_CCACHE
  42. default n
  43. help
  44. Useful if you have enough space for the cache and need speedup compilation.
  45. config ADK_MAKE_JOBS
  46. int
  47. default 1 if ! ADK_MAKE_PARALLEL
  48. config ADK_MAKE_PARALLEL
  49. prompt "Enable parallel building of packages"
  50. boolean
  51. config ADK_MAKE_JOBS
  52. prompt "How many jobs to use"
  53. int
  54. default 2
  55. depends on ADK_MAKE_PARALLEL
  56. help
  57. The number specified here will be passed to make as N in '-jN'
  58. config ADK_TARGET_IP
  59. prompt "Set target ip address for make check"
  60. string
  61. default "127.0.0.1"
  62. help
  63. config ADK_TARGET_PORT
  64. prompt "Set target port for make check"
  65. string
  66. default "2222" if ADK_TARGET_QEMU
  67. default "22"
  68. help
  69. choice
  70. prompt "Hostsystem (do not change!)"
  71. config ADK_HOST_LINUX
  72. prompt "Linux"
  73. boolean
  74. config ADK_HOST_FREEBSD
  75. prompt "FreeBSD"
  76. boolean
  77. config ADK_HOST_MIRBSD
  78. prompt "MirBSD"
  79. boolean
  80. config ADK_HOST_OPENBSD
  81. prompt "OpenBSD"
  82. boolean
  83. config ADK_HOST_NETBSD
  84. prompt "NetBSD"
  85. boolean
  86. config ADK_HOST_DARWIN
  87. prompt "Darwin"
  88. boolean
  89. config ADK_HOST_CYGWIN
  90. prompt "Cygwin"
  91. boolean
  92. endchoice
  93. endmenu