Config.or1k 613 B

12345678910111213141516171819202122232425262728293031323334
  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 "or1k"
  7. config ARCH_CFLAGS
  8. string
  9. config ARCH_LDFLAGS
  10. string
  11. config LIBGCC_CFLAGS
  12. string
  13. choice
  14. prompt "Target Architecture Type"
  15. default CONFIG_OR1K
  16. help
  17. This is the architecture type of your CPU. This information is used for
  18. optimizing purposes.
  19. These are the possible settings:
  20. - or1k Generic support for OpenCores OpenRISC/or1k architecture.
  21. config CONFIG_OR1K
  22. select ARCH_HAS_MMU
  23. select UCLIBC_HAS_FPU
  24. select ARCH_BIG_ENDIAN
  25. bool "or1k"
  26. endchoice