Config.in 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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_X86
  23. default y if ADK_CHOOSE_TARGET_SYSTEM_X86_64
  24. default n
  25. source "target/config/Config.in"
  26. menu "Runtime configuration"
  27. depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM
  28. source "target/config/Config.in.runtime"
  29. endmenu
  30. menu "Package collection"
  31. depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM
  32. source "target/packages/Config.in"
  33. endmenu
  34. menu "Package selection"
  35. depends on !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM
  36. config ADK_INSTALL_PACKAGE_INIT_SCRIPTS
  37. boolean "ship custom init-scripts along with packages"
  38. default y
  39. help
  40. Turning this option to false will prevent the ADK from
  41. installing init-scripts (i.e. files in /etc/init.d) for
  42. certain daemons and daemon-like applications.
  43. Note that without further customisation, turning this option
  44. off will almost certainly render the resulting system unusable.
  45. config ADK_INSTALL_PACKAGE_NETWORK_SCRIPTS
  46. boolean "ship custom network-scripts along with packages"
  47. default y
  48. help
  49. Turning this option to false will prevent the ADK from
  50. installing network-scripts (i.e. files in /etc/network/) for
  51. packages providing any.
  52. Note that without further customisation, turning this option
  53. off will almost certainly render the resulting system unusable.
  54. source "package/Config.in.auto.global"
  55. source "package/Config.in.auto"
  56. endmenu
  57. menu "Kernel configuration"
  58. depends on !ADK_TOOLCHAIN_ONLY && !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_KERNEL && !ADK_CHOOSE_TARGET_SYSTEM && ADK_TARGET_KERNEL_CUSTOMISING
  59. source "target/linux/Config.in"
  60. endmenu
  61. source "target/config/Config.in.adk"
  62. source "toolchain/Config.in"