Config.sh64 743 B

12345678910111213141516171819202122232425262728293031323334353637
  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 "sh64"
  7. config FORCE_OPTIONS_FOR_ARCH
  8. bool
  9. default y
  10. select ARCH_ANY_ENDIAN
  11. config ARCH_CFLAGS
  12. string
  13. config LIBGCC_CFLAGS
  14. string
  15. choice
  16. prompt "Target Processor Type"
  17. default CONFIG_SH5
  18. help
  19. This is the processor type of your CPU. This information is used for
  20. optimizing purposes, as well as to determine if your CPU has an MMU,
  21. an FPU, etc. If you pick the wrong CPU type, there is no guarantee
  22. that uClibc will work at all....
  23. Here are the available choices:
  24. - "SH5" SuperH SH-5 101, 103
  25. config CONFIG_SH5
  26. select ARCH_HAS_MMU
  27. select UCLIBC_HAS_LFS
  28. bool "SH5"
  29. endchoice