Config.arm 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. default "arm"
  7. config ARCH_CFLAGS
  8. string
  9. config LIBGCC_CFLAGS
  10. string
  11. config ARCH_SUPPORTS_BIG_ENDIAN
  12. bool
  13. default y
  14. config ARCH_SUPPORTS_LITTLE_ENDIAN
  15. bool
  16. default y
  17. choice
  18. prompt "Target Processor Type"
  19. default CONFIG_GENERIC_ARM
  20. help
  21. This is the processor type of your CPU. This information is used for
  22. optimizing purposes. To build a library that will run on all ARMCPU
  23. types (albeit not optimally fast), you can specify "Generic Arm" here.
  24. If you pick anything other than "Generic Arm", there is no guarantee
  25. that uClibc will even run on anything other than the selected processor
  26. type.
  27. Here are the settings recommended for greatest speed:
  28. - "Generic Arm" select this if your compiler is already setup to
  29. optimize things properly, or if you want to run on pretty much
  30. everything, or you just don't much care.
  31. - For anything else, pick the ARM core type that best matches the
  32. cpu you will be using on your device.
  33. If you don't know what to do, choose "Generic Arm".
  34. config CONFIG_GENERIC_ARM
  35. bool "Generic Arm"
  36. config CONFIG_ARM610
  37. bool "Arm 610"
  38. config CONFIG_ARM710
  39. bool "Arm 710"
  40. config CONFIG_ARM720T
  41. bool "Arm 720T"
  42. config CONFIG_ARM920T
  43. bool "Arm 920T"
  44. config CONFIG_ARM922T
  45. bool "Arm 922T"
  46. config CONFIG_ARM926T
  47. bool "Arm 926T"
  48. config CONFIG_ARM1136JF_S
  49. bool "Arm 1136JF-S"
  50. config CONFIG_ARM_SA110
  51. bool "Intel StrongArm SA-110"
  52. config CONFIG_ARM_SA1100
  53. bool "Intel StrongArm SA-1100"
  54. config CONFIG_ARM_XSCALE
  55. bool "Intel Xscale"
  56. endchoice