Config.in 2.4 KB

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