Config.in.adk 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  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. select BUSYBOX_STATIC
  34. help
  35. Useful for toolchain only target devices.
  36. config ADK_DISABLE_HONOUR_CFLAGS
  37. bool "Disable honour CFLAGS checks globally"
  38. default n
  39. help
  40. Disable honour CFLAGS checks.
  41. config ADK_WGET_TIMEOUT
  42. int "Set wget timeout"
  43. default 10
  44. help
  45. set wget timeout
  46. config ADK_USE_CCACHE
  47. bool "Use ccache to speedup recompilation"
  48. select ADK_HOST_NEED_CCACHE
  49. default n
  50. help
  51. Useful if you have enough space for the cache and need speedup compilation.
  52. config ADK_MAKE_JOBS
  53. int
  54. default 1 if ! ADK_MAKE_PARALLEL
  55. config ADK_MAKE_PARALLEL
  56. prompt "Enable parallel building of packages"
  57. boolean
  58. config ADK_MAKE_JOBS
  59. prompt "How many jobs to use"
  60. int
  61. default 2
  62. depends on ADK_MAKE_PARALLEL
  63. help
  64. The number specified here will be passed to make as N in '-jN'
  65. config ADK_TARGET_IP
  66. prompt "Set target ip address for make check"
  67. string
  68. default "127.0.0.1"
  69. help
  70. config ADK_TARGET_PORT
  71. prompt "Set target port for make check"
  72. string
  73. default "2222" if ADK_HARDWARE_QEMU
  74. default "22"
  75. help
  76. choice
  77. prompt "Hostsystem (do not change!)"
  78. config ADK_HOST_LINUX
  79. prompt "Linux"
  80. boolean
  81. config ADK_HOST_FREEBSD
  82. prompt "FreeBSD"
  83. boolean
  84. config ADK_HOST_MIRBSD
  85. prompt "MirBSD"
  86. boolean
  87. config ADK_HOST_OPENBSD
  88. prompt "OpenBSD"
  89. boolean
  90. config ADK_HOST_NETBSD
  91. prompt "NetBSD"
  92. boolean
  93. config ADK_HOST_DARWIN
  94. prompt "Darwin"
  95. boolean
  96. config ADK_HOST_CYGWIN
  97. prompt "Cygwin"
  98. boolean
  99. endchoice
  100. endmenu