Config.in 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. mainmenu "OpenADK Configuration"
  4. config MODULES
  5. boolean
  6. default y
  7. config ADK_HAVE_DOT_CONFIG
  8. boolean
  9. default y
  10. source "target/config/Config.in.appliances"
  11. menu "Target configuration"
  12. visible if !ADK_CHOOSE_APPLIANCE
  13. source "target/config/Config.in.cpu"
  14. source "target/config/Config.in.hardware"
  15. source "target/config/Config.in.kernel"
  16. source "target/config/Config.in.arch"
  17. source "target/config/Config.in.system"
  18. source "target/config/Config.in.endian"
  19. source "target/config/Config.in.arm"
  20. source "target/config/Config.in.cris"
  21. source "target/config/Config.in.x86"
  22. source "target/config/Config.in.qemu"
  23. source "target/config/Config.in.qemuopts"
  24. source "target/config/Config.in.kernelversion"
  25. source "target/config/Config.in.libc"
  26. source "target/config/Config.in.abi"
  27. source "target/config/Config.in.target"
  28. endmenu
  29. source "target/config/Config.in"
  30. menu "Package selection"
  31. visible if !ADK_CHOOSE_APPLIANCE
  32. source "package/Config.in.auto.global"
  33. source "package/Config.in"
  34. menu "Package options"
  35. visible if !ADK_CHOOSE_APPLIANCE
  36. config ADK_LEAVE_ETC_ALONE
  37. boolean "do not install anything into /etc"
  38. default n
  39. help
  40. Enabling this option will prevent the ADK from installing anything
  41. into /etc. This is useful for highly customised setups with custom
  42. base-files packages.
  43. Package Makefiles can override this setting by passing "force_etc" to
  44. the package-template. to a non-empty value. This is useful for
  45. packages traditionally installing non-config stuff into /etc, like
  46. e.g. ca-certificates.
  47. Note that without further customisation, turning this option
  48. on will almost certainly render the resulting system unusable.
  49. config ADK_INSTALL_PACKAGE_INIT_SCRIPTS
  50. boolean "ship custom init-scripts along with packages"
  51. default y
  52. depends on !ADK_LEAVE_ETC_ALONE
  53. help
  54. Turning this option to false will prevent the ADK from
  55. installing init-scripts (i.e. files in /etc/init.d) for
  56. certain daemons and daemon-like applications.
  57. Note that without further customisation, turning this option
  58. off will almost certainly render the resulting system unusable.
  59. config ADK_INSTALL_PACKAGE_NETWORK_SCRIPTS
  60. boolean "ship custom network-scripts along with packages"
  61. default y
  62. depends on !ADK_LEAVE_ETC_ALONE
  63. help
  64. Turning this option to false will prevent the ADK from
  65. installing network-scripts (i.e. files in /etc/network/) for
  66. packages providing any.
  67. Note that without further customisation, turning this option
  68. off will almost certainly render the resulting system unusable.
  69. endmenu
  70. endmenu
  71. menu "Runtime configuration"
  72. visible if !ADK_CHOOSE_APPLIANCE
  73. source "target/config/Config.in.runtime"
  74. endmenu
  75. menu "Kernel configuration"
  76. visible if !ADK_CHOOSE_APPLIANCE
  77. source "target/linux/Config.in"
  78. endmenu
  79. source "target/config/Config.in.toolchain"
  80. source "target/config/Config.in.adk"