Config.sh64 721 B

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