Config.in.archopts 743 B

1234567891011121314151617181920212223242526272829
  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 "Instruction set"
  5. depends on ADK_TARGET_ARCH_ARM
  6. config ADK_TARGET_ARCH_ARM_WITH_ARM
  7. bool "arm"
  8. depends on ADK_TARGET_WITH_MMU
  9. config ADK_TARGET_ARCH_ARM_WITH_THUMB
  10. bool "thumb"
  11. select ADK_KERNEL_ARM_THUMB
  12. select ADK_KERNEL_THUMB2_KERNEL
  13. depends on ADK_TARGET_CPU_WITH_THUMB || ADK_TARGET_CPU_WITH_THUMB2
  14. endchoice
  15. config ADK_TARGET_INSTRUCTION_SET
  16. string
  17. default "arm" if ADK_TARGET_ARCH_ARM_WITH_ARM
  18. default "thumb" if ADK_TARGET_ARCH_ARM_WITH_THUMB
  19. config ADK_TARGET_WITH_DEVICETREE
  20. bool
  21. depends on ADK_TARGET_ARCH_ARM
  22. default y if ADK_TARGET_KERNEL_VERSION_4_6
  23. default n