Config.arm 1.7 KB

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