Config.in.adk 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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_WGET_TIMEOUT
  21. int "Set wget timeout"
  22. default 10
  23. help
  24. set wget timeout
  25. config ADK_USE_CCACHE
  26. bool "Use ccache to speedup recompilation"
  27. select ADK_HOST_NEED_CCACHE
  28. default n
  29. help
  30. Useful if you have enough space for the cache and need speedup compilation.
  31. config ADK_MAKE_JOBS
  32. int
  33. default 1 if ! ADK_MAKE_PARALLEL
  34. config ADK_MAKE_PARALLEL
  35. prompt "Enable parallel building of packages"
  36. boolean
  37. config ADK_MAKE_JOBS
  38. prompt "How many jobs to use"
  39. int
  40. default 2
  41. depends on ADK_MAKE_PARALLEL
  42. help
  43. The number specified here will be passed to make as N in '-jN'
  44. config ADK_TARGET_IP
  45. prompt "Set target ip address for make check"
  46. string
  47. default "127.0.0.1"
  48. help
  49. config ADK_TARGET_PORT
  50. prompt "Set target port for make check"
  51. string
  52. default "2222" if ADK_TARGET_QEMU
  53. default "22"
  54. help
  55. choice
  56. prompt "Hostsystem (do not change!)"
  57. config ADK_HOST_LINUX
  58. prompt "Linux"
  59. boolean
  60. config ADK_HOST_FREEBSD
  61. prompt "FreeBSD"
  62. boolean
  63. config ADK_HOST_MIRBSD
  64. prompt "MirBSD"
  65. boolean
  66. config ADK_HOST_OPENBSD
  67. prompt "OpenBSD"
  68. boolean
  69. config ADK_HOST_NETBSD
  70. prompt "NetBSD"
  71. boolean
  72. config ADK_HOST_DARWIN
  73. prompt "Darwin"
  74. boolean
  75. config ADK_HOST_CYGWIN
  76. prompt "Cygwin"
  77. boolean
  78. endchoice
  79. endmenu