Config.in.adk 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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_DL_DIR
  13. string "download directory for packages"
  14. default ""
  15. help
  16. Configure the download directory for all source packages.
  17. Use an absolute path.
  18. config ADK_DEBUG
  19. bool "Compile applications with debug support by default"
  20. default n
  21. help
  22. All packages and libc will be compiled and packaged with debug information.
  23. Mostly useful for NFS root or big USB/CF or hard disk setups.
  24. config ADK_DEBUG_STRIP
  25. bool "strip target binaries/libraries for gdbserver usage"
  26. depends on ADK_DEBUG
  27. default n
  28. help
  29. All packages and libc will be compiled with debug information, but stripped for the target.
  30. config ADK_STATIC
  31. bool "Link applications statically by default"
  32. default n
  33. help
  34. Useful for toolchain only target devices.
  35. config ADK_DISABLE_HONOUR_CFLAGS
  36. bool "Disable honour CFLAGS checks globally"
  37. default n
  38. help
  39. Disable honour CFLAGS checks.
  40. config ADK_WGET_TIMEOUT
  41. int "Set wget timeout"
  42. default 10
  43. help
  44. set wget timeout
  45. config ADK_USE_CCACHE
  46. bool "Use ccache to speedup recompilation"
  47. select ADK_HOST_NEED_CCACHE
  48. default n
  49. help
  50. Useful if you have enough space for the cache and need speedup compilation.
  51. config ADK_MAKE_JOBS
  52. int
  53. default 1 if ! ADK_MAKE_PARALLEL
  54. config ADK_MAKE_PARALLEL
  55. prompt "Enable parallel building of packages"
  56. boolean
  57. config ADK_MAKE_JOBS
  58. prompt "How many jobs to use"
  59. int
  60. default 2
  61. depends on ADK_MAKE_PARALLEL
  62. help
  63. The number specified here will be passed to make as N in '-jN'
  64. config ADK_TARGET_IP
  65. prompt "Set target ip address for make check"
  66. string
  67. default "127.0.0.1"
  68. help
  69. config ADK_TARGET_PORT
  70. prompt "Set target port for make check"
  71. string
  72. default "2222" if ADK_HARDWARE_QEMU
  73. default "22"
  74. help
  75. choice
  76. prompt "Hostsystem (do not change!)"
  77. config ADK_HOST_LINUX
  78. prompt "Linux"
  79. boolean
  80. config ADK_HOST_FREEBSD
  81. prompt "FreeBSD"
  82. boolean
  83. config ADK_HOST_MIRBSD
  84. prompt "MirBSD"
  85. boolean
  86. config ADK_HOST_OPENBSD
  87. prompt "OpenBSD"
  88. boolean
  89. config ADK_HOST_NETBSD
  90. prompt "NetBSD"
  91. boolean
  92. config ADK_HOST_DARWIN
  93. prompt "Darwin"
  94. boolean
  95. config ADK_HOST_CYGWIN
  96. prompt "Cygwin"
  97. boolean
  98. endchoice
  99. endmenu