Config.in.arm.choice 827 B

12345678910111213141516171819202122232425262728293031323334
  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
  4. prompt "Cubox-i model"
  5. depends on ADK_TARGET_SYSTEM_CUBOX_I
  6. config ADK_TARGET_CUBOX_I4PRO
  7. boolean "Solidrun Cubox-i4Pro"
  8. config ADK_TARGET_CUBOX_I2ULTRA
  9. boolean "Solidrun Cubox-i2Ultra"
  10. config ADK_TARGET_CUBOX_I2
  11. boolean "Solidrun Cubox-i2"
  12. config ADK_TARGET_CUBOX_I1
  13. boolean "Solidrun Cubox-i1"
  14. endchoice
  15. choice ADK_TARGET_ARM_FLOAT
  16. prompt "Target float type"
  17. depends on ADK_TARGET_CPU_WITH_FPU || ADK_TARGET_SYSTEM_QEMU_ARM
  18. config ADK_TARGET_ARM_HARD_FLOAT
  19. boolean "Use hard-float for system with FPU"
  20. select ADK_hard_float
  21. config ADK_TARGET_ARM_SOFT_FLOAT
  22. boolean "Use soft-float for system without FPU"
  23. select ADK_soft_float
  24. endchoice