Config.sh 989 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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 "sh"
  8. config FORCE_OPTIONS_FOR_ARCH
  9. bool
  10. default y
  11. select ARCH_ANY_ENDIAN
  12. choice
  13. prompt "Target Processor Type"
  14. default CONFIG_SH4
  15. help
  16. This is the processor type of your CPU. This information is used for
  17. optimizing purposes, as well as to determine if your CPU has an MMU,
  18. an FPU, etc. If you pick the wrong CPU type, there is no guarantee
  19. that uClibc will work at all....
  20. Here are the available choices:
  21. - "SH2A" Renesas SH-2A (SH7206)
  22. - "SH2" SuperH SH-2
  23. - "SH3" SuperH SH-3
  24. - "SH4" SuperH SH-4
  25. config CONFIG_SH2A
  26. select ARCH_HAS_NO_MMU
  27. select HAVE_NO_PIC
  28. bool "SH2A"
  29. config CONFIG_SH2
  30. select ARCH_HAS_NO_MMU
  31. bool "SH2"
  32. config CONFIG_SH3
  33. select ARCH_HAS_MMU
  34. bool "SH3"
  35. config CONFIG_SH4
  36. bool "SH4"
  37. endchoice
  38. config ARCH_HAS_BWD_MEMCPY
  39. bool
  40. default y
  41. depends on CONFIG_SH4