Config.sh64 693 B

1234567891011121314151617181920212223242526272829303132
  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. choice
  13. prompt "Target Processor Type"
  14. default CONFIG_SH5
  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. - "SH5" SuperH SH-5 101, 103
  22. config CONFIG_SH5
  23. select ARCH_HAS_MMU
  24. select UCLIBC_HAS_LFS
  25. bool "SH5"
  26. endchoice