Config.sh 999 B

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