Config.sh64 751 B

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