Config.in 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. config ADKVERSION
  4. string
  5. option env="ADKVERSION"
  6. config MODULES
  7. bool
  8. default y
  9. config ADK_HAVE_DOT_CONFIG
  10. bool
  11. default y
  12. mainmenu "OpenADK Configuration"
  13. config ADK_CHOOSE_TARGET_SYSTEM
  14. boolean
  15. default y if ADK_CHOOSE_TARGET_SYSTEM_ARM
  16. default y if ADK_CHOOSE_TARGET_SYSTEM_CRIS
  17. default y if ADK_CHOOSE_TARGET_SYSTEM_MIPS
  18. default y if ADK_CHOOSE_TARGET_SYSTEM_PPC
  19. default y if ADK_CHOOSE_TARGET_SYSTEM_PPC64
  20. default y if ADK_CHOOSE_TARGET_SYSTEM_SPARC
  21. default y if ADK_CHOOSE_TARGET_SYSTEM_SPARC64
  22. default y if ADK_CHOOSE_TARGET_SYSTEM_SH
  23. default y if ADK_CHOOSE_TARGET_SYSTEM_X86
  24. default y if ADK_CHOOSE_TARGET_SYSTEM_X86_64
  25. default n
  26. source "target/config/Config.in"
  27. menu "Runtime configuration"
  28. depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM
  29. source "target/config/Config.in.runtime"
  30. endmenu
  31. menu "Package collection"
  32. depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM
  33. source "target/packages/Config.in"
  34. endmenu
  35. menu "Package selection"
  36. depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM
  37. config ADK_INSTALL_PACKAGE_INIT_SCRIPTS
  38. boolean "ship custom init-scripts along with packages"
  39. default y
  40. help
  41. Turning this option to false will prevent the ADK from
  42. installing init-scripts (i.e. files in /etc/init.d) for
  43. certain daemons and daemon-like applications.
  44. Note that without further customisation, turning this option
  45. off will almost certainly render the resulting system unusable.
  46. config ADK_INSTALL_PACKAGE_NETWORK_SCRIPTS
  47. boolean "ship custom network-scripts along with packages"
  48. default y
  49. help
  50. Turning this option to false will prevent the ADK from
  51. installing network-scripts (i.e. files in /etc/network/) for
  52. packages providing any.
  53. Note that without further customisation, turning this option
  54. off will almost certainly render the resulting system unusable.
  55. source "package/Config.in.auto.global"
  56. source "package/Config.in.auto"
  57. endmenu
  58. menu "Kernel configuration"
  59. depends on !ADK_TOOLCHAIN_ONLY && !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM && ADK_TARGET_KERNEL_CUSTOMISING
  60. source "target/linux/Config.in"
  61. endmenu
  62. source "target/config/Config.in.adk"
  63. source "toolchain/Config.in"