Config.arm 1.7 KB

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