Config.in 2.7 KB

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