1
0

Config.in 3.0 KB

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