Config.sh64 822 B

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