Config.in.arm 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. choice
  2. prompt "Target Architecture Variant"
  3. depends on BR2_arm || BR2_armeb
  4. default BR2_generic_arm
  5. help
  6. Specific CPU variant to use
  7. config BR2_generic_arm
  8. bool "generic_arm"
  9. config BR2_arm7tdmi
  10. bool "arm7tdmi"
  11. config BR2_arm610
  12. bool "arm610"
  13. config BR2_arm710
  14. bool "arm710"
  15. config BR2_arm720t
  16. bool "arm720t"
  17. config BR2_arm920t
  18. bool "arm920t"
  19. config BR2_arm922t
  20. bool "arm922t"
  21. config BR2_arm926t
  22. bool "arm926t"
  23. config BR2_arm10t
  24. bool "arm10t"
  25. config BR2_arm1136jf_s
  26. bool "arm1136jf_s"
  27. config BR2_arm1176jz_s
  28. bool "arm1176jz-s"
  29. config BR2_arm1176jzf_s
  30. bool "arm1176jzf-s"
  31. config BR2_cortex_a8
  32. bool "cortex-A8"
  33. config BR2_cortex_a9
  34. bool "cortex-A9"
  35. config BR2_sa110
  36. bool "sa110"
  37. config BR2_sa1100
  38. bool "sa1100"
  39. config BR2_xscale
  40. bool "xscale"
  41. config BR2_iwmmxt
  42. bool "iwmmxt"
  43. endchoice
  44. choice
  45. prompt "Target ABI"
  46. depends on BR2_arm || BR2_armeb
  47. default BR2_ARM_EABI
  48. help
  49. Application Binary Interface to use
  50. Note:
  51. Using OABI is discouraged.
  52. config BR2_ARM_EABI
  53. bool "EABI"
  54. config BR2_ARM_OABI
  55. bool "OABI"
  56. depends on !BR2_GCC_VERSION_4_7_X
  57. endchoice