Config.sh64 897 B

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