Config.in 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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_TOOLCHAIN_ONLY && !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. source "package/Config.in.auto.global"
  41. source "package/Config.in.auto"
  42. endmenu
  43. menu "Kernel configuration"
  44. depends on !ADK_TOOLCHAIN_ONLY && !ADK_CHOOSE_TARGET_ARCH && !ADK_CHOOSE_TARGET_SYSTEM
  45. source "target/linux/Config.in"
  46. endmenu
  47. source "target/config/Config.in.adk"