Config.sh 1.1 KB

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