Config.in.arm.choice 822 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. choice ADK_TARGET_ARM_CPU_ARCH
  4. prompt "CPU architecture"
  5. depends on ADK_TARGET_TOOLCHAIN && ADK_LINUX_ARM
  6. default ADK_CPU_ARMV7
  7. config ADK_CPU_ARMV5TE
  8. boolean "armv5te"
  9. select ADK_armv5te
  10. config ADK_CPU_ARMV6
  11. boolean "armv6"
  12. select ADK_armv6
  13. config ADK_CPU_ARMV7A
  14. boolean "armv7-a"
  15. select ADK_armv7a
  16. endchoice
  17. choice
  18. prompt "Cubox-i model"
  19. depends on ADK_TARGET_SYSTEM_CUBOX_I
  20. config ADK_TARGET_CUBOX_I4PRO
  21. boolean "Solidrun Cubox-i4Pro"
  22. config ADK_TARGET_CUBOX_I2ULTRA
  23. boolean "Solidrun Cubox-i2Ultra"
  24. config ADK_TARGET_CUBOX_I2
  25. boolean "Solidrun Cubox-i2"
  26. config ADK_TARGET_CUBOX_I1
  27. boolean "Solidrun Cubox-i1"
  28. endchoice