Config.in.arm.choice 863 B

123456789101112131415161718192021222324252627282930313233343536
  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. select ADK_eabihf
  22. config ADK_TARGET_ARM_SOFT_FLOAT
  23. boolean "Use soft-float for system without FPU"
  24. select ADK_soft_float
  25. select ADK_eabi
  26. endchoice