Config.arm 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see extra/config/Kconfig-language.txt
  4. #
  5. config TARGET_ARCH
  6. string
  7. default "arm"
  8. config FORCE_OPTIONS_FOR_ARCH
  9. bool
  10. default y
  11. select ARCH_ANY_ENDIAN
  12. config ARCH_CFLAGS
  13. string
  14. choice
  15. prompt "Target ABI"
  16. default CONFIG_ARM_OABI
  17. help
  18. If you choose "EABI" here, functions and constants required by the
  19. ARM EABI will be built into the library. You should choose "EABI"
  20. if your compiler uses the ARM EABI, in which case you will also
  21. need a kernel supporting the EABI system call interface, or "OABI"
  22. for a compiler using the old Linux ABI.
  23. config CONFIG_ARM_OABI
  24. bool "OABI"
  25. config CONFIG_ARM_EABI
  26. bool "EABI"
  27. endchoice
  28. config USE_BX
  29. bool "Use BX in function return"
  30. default y
  31. depends on !CONFIG_GENERIC_ARM && !CONFIG_ARM610 && !CONFIG_ARM710
  32. help
  33. Use BX instruction for THUMB aware architectures.
  34. choice
  35. prompt "Target Processor Type"
  36. default CONFIG_GENERIC_ARM
  37. help
  38. This is the processor type of your CPU. This information is used for
  39. optimizing purposes. To build a library that will run on all ARMCPU
  40. types (albeit not optimally fast), you can specify "Generic Arm" here.
  41. If you pick anything other than "Generic Arm", there is no guarantee
  42. that uClibc will even run on anything other than the selected
  43. processor type.
  44. Here are the settings recommended for greatest speed:
  45. - "Generic Arm" select this if your compiler is already setup to
  46. optimize things properly, or if you want to run on pretty much
  47. everything, or you just don't much care.
  48. - For anything else, pick the ARM core type that best matches the
  49. cpu you will be using on your device.
  50. If you don't know what to do, choose "Generic Arm".
  51. config CONFIG_GENERIC_ARM
  52. bool "Generic Arm"
  53. config CONFIG_ARM610
  54. bool "Arm 610"
  55. select ARCH_HAS_MMU
  56. config CONFIG_ARM710
  57. bool "Arm 710"
  58. select ARCH_HAS_MMU
  59. config CONFIG_ARM7TDMI
  60. bool "Arm 7TDMI"
  61. select ARCH_HAS_NO_MMU
  62. config CONFIG_ARM720T
  63. bool "Arm 720T"
  64. select ARCH_HAS_MMU
  65. config CONFIG_ARM920T
  66. bool "Arm 920T"
  67. select ARCH_HAS_MMU
  68. config CONFIG_ARM922T
  69. bool "Arm 922T"
  70. select ARCH_HAS_MMU
  71. config CONFIG_ARM926T
  72. bool "Arm 926T"
  73. select ARCH_HAS_MMU
  74. config CONFIG_ARM10T
  75. bool "Arm 10T"
  76. select ARCH_HAS_MMU
  77. config CONFIG_ARM1136JF_S
  78. bool "Arm 1136JF-S"
  79. select ARCH_HAS_MMU
  80. config CONFIG_ARM1176JZ_S
  81. bool "Arm 1176JZ-S"
  82. select ARCH_HAS_MMU
  83. config CONFIG_ARM1176JZF_S
  84. bool "Arm 1176JZF-S"
  85. select ARCH_HAS_MMU
  86. config CONFIG_ARM_CORTEX_M3
  87. bool "Arm Cortex-M3"
  88. select ARCH_HAS_NO_MMU
  89. select USE_BX
  90. config CONFIG_ARM_CORTEX_M1
  91. bool "Arm Cortex-M1"
  92. select ARCH_HAS_NO_MMU
  93. select USE_BX
  94. config CONFIG_ARM_SA110
  95. bool "Intel StrongArm SA-110"
  96. select ARCH_HAS_MMU
  97. config CONFIG_ARM_SA1100
  98. bool "Intel StrongArm SA-1100"
  99. select ARCH_HAS_MMU
  100. config CONFIG_ARM_XSCALE
  101. bool "Intel Xscale"
  102. select ARCH_HAS_MMU
  103. config CONFIG_ARM_IWMMXT
  104. bool "Intel Xscale With WMMX PXA27x"
  105. select ARCH_HAS_MMU
  106. endchoice