Config.sparc 740 B

12345678910111213141516171819202122232425262728293031323334353637
  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 "sparc"
  8. config FORCE_OPTIONS_FOR_ARCH
  9. bool
  10. default y
  11. select ARCH_BIG_ENDIAN
  12. choice
  13. prompt "Target Processor Type"
  14. default CONFIG_SPARC_V8
  15. help
  16. This is the processor type of your CPU. This information is used for
  17. optimizing purposes. Building for a v8 SPARC is pretty safe nowadays.
  18. Warning: shared library support requires v8 or better, so building for
  19. SPARC v7 will give you only static support.
  20. config CONFIG_SPARC_V7
  21. bool "SPARC v7"
  22. config CONFIG_SPARC_V8
  23. bool "SPARC v8"
  24. config CONFIG_SPARC_V9
  25. bool "SPARC v9"
  26. config CONFIG_SPARC_V9B
  27. bool "SPARC v9b"
  28. endchoice