Config.kvx 666 B

123456789101112131415161718192021222324252627282930313233343536
  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 "kvx"
  8. choice
  9. prompt "Target architecture variant"
  10. help
  11. Select CPU variant to use
  12. config CONFIG_KVX_COOLIDGE_V1
  13. bool "Coolidge V1"
  14. config CONFIG_KVX_COOLIDGE_V2
  15. bool "Coolidge V2"
  16. endchoice
  17. config TARGET_MARCH
  18. string
  19. default "kv3-1" if CONFIG_KVX_COOLIDGE_V1
  20. default "kv3-2" if CONFIG_KVX_COOLIDGE_V2
  21. config FORCE_OPTIONS_FOR_ARCH
  22. bool
  23. default y
  24. select ARCH_LITTLE_ENDIAN
  25. select ARCH_HAS_MMU
  26. select UCLIBC_HAS_FPU
  27. select UCLIBC_HAS_FENV
  28. select UCLIBC_HAS_WCHAR
  29. select DO_C99_MATH