Config.sh64 730 B

123456789101112131415161718192021222324252627282930313233
  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 "sh64"
  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_SH5
  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. - "SH5" SuperH SH-5 101, 103
  23. config CONFIG_SH5
  24. select ARCH_HAS_MMU
  25. select UCLIBC_HAS_LFS
  26. bool "SH5"
  27. endchoice