Config.in.adk 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. menu "Global settings"
  2. config ADK_VENDOR
  3. string "vendor name"
  4. default "openadk"
  5. help
  6. Vendor string is used for toolchain.
  7. config ADK_HOST
  8. string "webserver for packages and distfiles"
  9. default "www.openadk.org"
  10. help
  11. Configure host for IPKG package management.
  12. config ADK_DEBUG
  13. bool "Compile applications with debug support by default"
  14. default n
  15. help
  16. All packages and libc will be compiled and packaged with debug information.
  17. Mostly useful for NFS root or big USB/CF or hard disk setups.
  18. config ADK_DEBUG_STRIP
  19. bool "strip target binaries/libraries for gdbserver usage"
  20. depends on ADK_DEBUG
  21. default n
  22. help
  23. All packages and libc will be compiled with debug information, but stripped for the target.
  24. config ADK_STATIC
  25. bool "Link applications statically by default"
  26. default n
  27. help
  28. Useful for toolchain only target devices.
  29. config ADK_USE_CCACHE
  30. bool "Use ccache to speedup recompilation"
  31. default n
  32. help
  33. Useful if you have enough space for the cache and need speedup compilation.
  34. config ADK_MAKE_JOBS
  35. int
  36. default 1 if ! ADK_MAKE_PARALLEL
  37. config ADK_MAKE_PARALLEL
  38. prompt "Enable parallel building of packages"
  39. boolean
  40. config ADK_MAKE_JOBS
  41. prompt "How many jobs to use"
  42. int
  43. default 2
  44. depends on ADK_MAKE_PARALLEL
  45. help
  46. The number specified here will be passed to make as N in '-jN'
  47. config ADK_TARGET_IP
  48. prompt "Set target ip address for make check"
  49. string
  50. default "127.0.0.1"
  51. help
  52. choice
  53. prompt "Hostsystem (do not change!)"
  54. config ADK_HOST_LINUX
  55. prompt "Linux"
  56. boolean
  57. config ADK_HOST_FREEBSD
  58. prompt "FreeBSD"
  59. boolean
  60. config ADK_HOST_MIRBSD
  61. prompt "MirBSD"
  62. boolean
  63. config ADK_HOST_OPENBSD
  64. prompt "OpenBSD"
  65. boolean
  66. config ADK_HOST_NETBSD
  67. prompt "NetBSD"
  68. boolean
  69. config ADK_HOST_DARWIN
  70. prompt "Darwin"
  71. boolean
  72. config ADK_HOST_CYGWIN
  73. prompt "Cygwin"
  74. boolean
  75. endchoice
  76. endmenu