Config.sh 1.1 KB

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