Config.in.adk 2.1 KB

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