Config.in.adk 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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_STATIC
  19. bool "Link applications statically by default"
  20. default n
  21. help
  22. Useful for toolchain only target devices.
  23. config ADK_MAKE_JOBS
  24. int
  25. default 1 if ! ADK_MAKE_PARALLEL
  26. config ADK_MAKE_PARALLEL
  27. prompt "Enable parallel building of packages"
  28. boolean
  29. config ADK_MAKE_JOBS
  30. prompt "How many jobs to use"
  31. int
  32. default 2
  33. depends on ADK_MAKE_PARALLEL
  34. help
  35. The number specified here will be passed to make as N in '-jN'
  36. config ADK_TARGET_IP
  37. prompt "Set target ip address for make check"
  38. string
  39. default "127.0.0.1"
  40. help
  41. choice
  42. prompt "Hostsystem (do not change!)"
  43. config ADK_HOST_LINUX
  44. prompt "Linux"
  45. boolean
  46. config ADK_HOST_FREEBSD
  47. prompt "FreeBSD"
  48. boolean
  49. config ADK_HOST_MIRBSD
  50. prompt "MirBSD"
  51. boolean
  52. config ADK_HOST_OPENBSD
  53. prompt "OpenBSD"
  54. boolean
  55. config ADK_HOST_NETBSD
  56. prompt "NetBSD"
  57. boolean
  58. config ADK_HOST_DARWIN
  59. prompt "Darwin"
  60. boolean
  61. config ADK_HOST_CYGWIN
  62. prompt "Cygwin"
  63. boolean
  64. endchoice
  65. endmenu