Config.in.adk 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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_MAKE_JOBS
  30. int
  31. default 1 if ! ADK_MAKE_PARALLEL
  32. config ADK_MAKE_PARALLEL
  33. prompt "Enable parallel building of packages"
  34. boolean
  35. config ADK_MAKE_JOBS
  36. prompt "How many jobs to use"
  37. int
  38. default 2
  39. depends on ADK_MAKE_PARALLEL
  40. help
  41. The number specified here will be passed to make as N in '-jN'
  42. config ADK_TARGET_IP
  43. prompt "Set target ip address for make check"
  44. string
  45. default "127.0.0.1"
  46. help
  47. choice
  48. prompt "Hostsystem (do not change!)"
  49. config ADK_HOST_LINUX
  50. prompt "Linux"
  51. boolean
  52. config ADK_HOST_FREEBSD
  53. prompt "FreeBSD"
  54. boolean
  55. config ADK_HOST_MIRBSD
  56. prompt "MirBSD"
  57. boolean
  58. config ADK_HOST_OPENBSD
  59. prompt "OpenBSD"
  60. boolean
  61. config ADK_HOST_NETBSD
  62. prompt "NetBSD"
  63. boolean
  64. config ADK_HOST_DARWIN
  65. prompt "Darwin"
  66. boolean
  67. config ADK_HOST_CYGWIN
  68. prompt "Cygwin"
  69. boolean
  70. endchoice
  71. endmenu